/* HERO */
  .hero {
    background:
      radial-gradient(ellipse at 80% 18%, rgba(137, 211, 88, .26) 0%, transparent 44%),
      radial-gradient(ellipse at 12% 82%, rgba(255,255,255,.08) 0%, transparent 34%),
      linear-gradient(140deg, var(--timber) 0%, #1e3d2d 55%, #152e20 100%);
    min-height: calc(100vh - 64px);
    display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    align-items: center; padding: 72px 6vw 54px;
    gap: 48px; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.12));
    pointer-events: none;
  }
  .hero::after { display: none; }
  .hero-content { position: relative; z-index: 1; max-width: 650px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(116,186,64,.15); border: 1px solid rgba(116,186,64,.3);
    color: var(--mint); padding: 5px 13px; border-radius: 100px;
    font-size: 12px; font-weight: 600; margin-bottom: 20px;
  }
  .hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
  .hero h1 {
    font-size: clamp(44px, 6vw, 82px); font-weight: 900; line-height: .98;
    letter-spacing: -2px; color: var(--white); margin-bottom: 10px;
  }
  .hero h1 em { color: var(--mint); font-style: normal; }
  .service-note {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.78); font-size: 13px; font-weight: 600;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px; padding: 8px 14px;
  }
  .service-note span { color: var(--mint); }
  .hero-store-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 5px; }
  .hero-store-buttons .store-btn {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.14);
    box-shadow: none;
    backdrop-filter: blur(10px);
  }
  .hero-store-buttons .store-btn:hover { background: rgba(255,255,255,.16); box-shadow: 0 8px 22px rgba(0,0,0,.2); }

  .hero-visual { display: flex; justify-content: center; align-items: flex-end; position: relative; z-index: 1; min-height: 560px; }
  .hero-visual::before {
    content: ''; position: absolute; width: min(34vw, 460px); aspect-ratio: 1;
    border-radius: 50%; background: radial-gradient(circle, rgba(116,186,64,.36) 0%, rgba(116,186,64,.12) 42%, transparent 70%);
    bottom: 52px; left: 50%; transform: translateX(-50%);
    filter: blur(4px);
  }
  .hero-device {
    height: min(78vh, 610px); width: auto;
    animation: floaty 5s ease-in-out infinite;
    filter: drop-shadow(0 42px 60px rgba(0,0,0,.5));
    position: relative; z-index: 2;
  }
  .hero-float-card {
    position: absolute; z-index: 3;
    background: rgba(255,255,255,.96); color: var(--black);
    border-radius: 18px; padding: 14px 16px;
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.6);
    min-width: 150px;
  }
  .hero-float-card small { display: block; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
  .hero-float-card strong { display: block; font-size: 19px; line-height: 1; color: var(--timber); }
  .hero-float-card p { color: var(--muted); font-size: 11px; line-height: 1.35; margin-top: 5px; }
  .hero-float-left { left: 2%; top: 22%; }
  .hero-float-right { right: 0; bottom: 24%; }
  @keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
