/* ============================================================
   HERO — Clean, proven approach (based on 100N reference)
   ============================================================ */

#home.hero {
  min-height: 100svh;
  background: #080e09;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  padding-bottom: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

/* ── Background ──────────────────────────────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-url);
  background-size: cover;
  background-position: center;
  filter: saturate(1.2) brightness(0.45);
  z-index: 0;
}

/* ── Overlays ────────────────────────────────────────────── */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%,
      rgba(82,183,136,0.18) 0%, transparent 60%),
    linear-gradient(180deg,
      rgba(5,12,7,0.55)  0%,
      rgba(8,20,10,0.25) 45%,
      rgba(5,12,7,0.80)  80%,
      rgba(3,8,4,0.98)   100%);
}

/* Top green line */
.hero__overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(82,183,136,0.90) 35%,
    #a8f0c8 50%,
    rgba(82,183,136,0.90) 65%,
    transparent 100%);
  z-index: 2;
}

/* Bottom fade */
.hero__overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top,
    rgba(3,8,4,1) 0%, transparent 100%);
}

/* Film grain */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ── Content — exactly like 100N hero-inner ──────────────── */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  padding: 48px 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* ══════════════════════════════════════════════════════════
   LOGO
══════════════════════════════════════════════════════════ */

.hero__logo-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.1s forwards;
}

.hero__logo-ring {
  position: absolute;
  border-radius: 50%;
  animation: ringRotate 10s linear infinite;
}

.hero__logo-ring--outer {
  width: 130px; height: 130px;
  border: 1.5px solid transparent;
  border-top-color: rgba(82,183,136,0.90);
  border-left-color: rgba(82,183,136,0.40);
  border-right-color: rgba(82,183,136,0.15);
  animation-duration: 8s;
  filter: drop-shadow(0 0 6px rgba(82,183,136,0.55));
}

.hero__logo-ring--inner {
  width: 108px; height: 108px;
  border: 1px dashed rgba(82,183,136,0.22);
  animation-direction: reverse;
  animation-duration: 14s;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.hero__logo-img-wrap {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: linear-gradient(145deg,
    rgba(255,255,255,0.16) 0%,
    rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(82,183,136,0.28),
    0 0 0 8px rgba(82,183,136,0.05),
    0 12px 40px rgba(0,0,0,0.65),
    0 0 70px rgba(82,183,136,0.22),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.hero__logo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.hero__logo-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 8px;
  line-height: 1.2;
}

.hero__logo-wrap::before {
  content: '';
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(82,183,136,0.35) 0%, transparent 65%);
  animation: glowPulse 3s ease-in-out infinite;
  z-index: 0;
}

.hero__logo-wrap::after {
  content: '';
  position: absolute;
  width: 170px; height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(82,183,136,0.08) 0%, transparent 65%);
  animation: glowPulse 3s ease-in-out infinite 0.8s;
  z-index: 0;
}

@keyframes glowPulse {
  0%,100% { transform: scale(0.92); opacity: 0.45; }
  50%      { transform: scale(1.18); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   BRAND NAME
══════════════════════════════════════════════════════════ */

.hero__brand-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.25s forwards;
  text-shadow: 0 0 20px rgba(82,183,136,0.28);
}

/* ══════════════════════════════════════════════════════════
   EYEBROW — hidden
══════════════════════════════════════════════════════════ */
.hero__eyebrow { display: none !important; }

/* ══════════════════════════════════════════════════════════
   HEADLINE
══════════════════════════════════════════════════════════ */

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  white-space: pre-line;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.38s forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55);
}

.hero__headline em {
  font-style: italic;
  color: #74C69D;
  text-shadow: 0 0 24px rgba(116,198,157,0.50);
}

/* ══════════════════════════════════════════════════════════
   SUBHEADLINE
══════════════════════════════════════════════════════════ */

.hero__subheadline {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.50s forwards;
}

/* ══════════════════════════════════════════════════════════
   TRUST BADGES
══════════════════════════════════════════════════════════ */

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.62s forwards;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 8px 14px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.hero__trust-item:hover {
  background: rgba(82,183,136,0.14);
  border-color: rgba(82,183,136,0.30);
  color: rgba(255,255,255,0.90);
}

.hero__trust-item span:first-child { font-size: 14px; }

/* ══════════════════════════════════════════════════════════
   DISCOUNT — like 100N hero-promo, above button
══════════════════════════════════════════════════════════ */

.hero__discount {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.6;
  max-width: 420px;
  width: 100%;
  text-align: center;
  background: rgba(255,200,70,0.12);
  border: 1px solid rgba(255,200,70,0.30);
  border-radius: 14px;
  padding: 12px 20px;
  margin-bottom: 20px;
  color: #FFD580;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.74s forwards;
}

/* ══════════════════════════════════════════════════════════
   ORDER NOW BUTTON — like 100N btn-primary
══════════════════════════════════════════════════════════ */

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.88s forwards;
}

.hero__actions .btn {
  background: linear-gradient(160deg,
    #6FCF97 0%, #52B788 35%,
    #27AE60 70%, #1a7a42 100%);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow:
    0 4px 0 #0f4a28,
    0 8px 0 rgba(8,32,16,0.35),
    0 10px 24px rgba(39,174,96,0.50),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

.hero__actions .btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 #0f4a28,
    0 10px 0 rgba(8,32,16,0.35),
    0 16px 32px rgba(39,174,96,0.60),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

.hero__actions .btn:active {
  transform: translateY(3px);
  box-shadow:
    0 1px 0 #0f4a28,
    0 3px 10px rgba(39,174,96,0.30);
}

/* Shine sweep */
.hero__actions .btn::before {
  content: '';
  position: absolute;
  top: 0; left: -110%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.25), transparent);
  animation: btnShine 4s ease-in-out infinite 3s;
  pointer-events: none;
}

/* Top highlight */
.hero__actions .btn::after {
  content: '';
  position: absolute;
  top: 1px; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.60), transparent);
  pointer-events: none;
}

@keyframes btnShine {
  0%   { left: -110%; opacity: 0; }
  8%   { opacity: 1; }
  38%  { left: 155%; opacity: 0; }
  100% { left: 155%; opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   SCROLL
══════════════════════════════════════════════════════════ */

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.25);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero__scroll-line {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom,
    rgba(82,183,136,0.80), transparent);
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════ */

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   TABLET (768px+)
══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .hero__content     { max-width: 720px; padding: 48px 32px; }
  .hero__logo-wrap        { width: 150px; height: 150px; }
  .hero__logo-ring--outer { width: 150px; height: 150px; }
  .hero__logo-ring--inner { width: 126px; height: 126px; }
  .hero__logo-img-wrap    { width: 108px; height: 108px; }
  .hero__subheadline { font-size: 1.05rem; }
  .hero__trust-item  { font-size: 0.88rem; }
  .hero__discount    { font-size: 0.92rem; max-width: 480px; }
  .hero__actions .btn { padding: 17px 48px; font-size: 1.05rem; }
}

/* ══════════════════════════════════════════════════════════
   DESKTOP (1024px+)
══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero__logo-wrap        { width: 170px; height: 170px; }
  .hero__logo-ring--outer { width: 170px; height: 170px; }
  .hero__logo-ring--inner { width: 144px; height: 144px; }
  .hero__logo-img-wrap    { width: 124px; height: 124px; }
  .hero__headline    { font-size: 4.5rem; }
  .hero__subheadline { font-size: 1.1rem; }
  .hero__actions .btn { padding: 18px 56px; font-size: 1.1rem; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE (max 600px) — matches 100N mobile behaviour
══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  #home.hero         { padding-top: var(--nav-height); }
  .hero__content     { padding: 24px 16px; }
  .hero__logo-wrap        { width: 110px; height: 110px; margin-bottom: 14px; }
  .hero__logo-ring--outer { width: 110px; height: 110px; }
  .hero__logo-ring--inner { width: 90px;  height: 90px;  }
  .hero__logo-img-wrap    { width: 76px;  height: 76px;  }
  .hero__brand-name  { font-size: 10px; margin-bottom: 12px; }
  .hero__headline    { font-size: clamp(1.9rem, 9vw, 2.8rem); margin-bottom: 8px; }
  .hero__subheadline { font-size: 0.92rem; margin-bottom: 20px; }
  .hero__trust       { gap: 6px; margin-bottom: 16px; flex-wrap: nowrap; }
  .hero__trust-item  { font-size: 0.75rem; padding: 6px 10px; flex: 1; justify-content: center; max-width: 115px; }
  .hero__discount    { font-size: 0.80rem; padding: 10px 16px; margin-bottom: 16px; border-radius: 12px; }
  .hero__actions .btn { padding: 14px 32px; font-size: 0.95rem; }
  .hero__scroll      { display: none; }
}

/* ══════════════════════════════════════════════════════════
   SMALL PHONES (max 380px)
══════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero__logo-wrap        { width: 96px;  height: 96px;  }
  .hero__logo-ring--outer { width: 96px;  height: 96px;  }
  .hero__logo-ring--inner { width: 78px;  height: 78px;  }
  .hero__logo-img-wrap    { width: 66px;  height: 66px;  }
  .hero__headline    { font-size: 1.75rem; }
  .hero__trust-item  { font-size: 0.70rem; padding: 5px 8px; }
  .hero__discount    { font-size: 0.76rem; }
  .hero__actions .btn { padding: 13px 28px; font-size: 0.90rem; }
}

/* ══════════════════════════════════════════════════════════
   LANDSCAPE PHONES
══════════════════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  #home.hero         { min-height: auto; padding: var(--nav-height) 0 24px; }
  .hero__content     { padding: 16px 24px; }
  .hero__logo-wrap   { width: 80px; height: 80px; margin-bottom: 10px; }
  .hero__logo-ring--outer { width: 80px; height: 80px; }
  .hero__logo-ring--inner { width: 66px; height: 66px; }
  .hero__logo-img-wrap    { width: 56px; height: 56px; }
  .hero__subheadline { display: none; }
  .hero__headline    { font-size: 1.8rem; margin-bottom: 10px; }
  .hero__trust       { margin-bottom: 12px; }
  .hero__discount    { margin-bottom: 12px; font-size: 0.78rem; }
  .hero__scroll      { display: none; }
}