/* ============================================================
   Homepage — premium hero + sections
   ============================================================ */

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 6rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* Radial glow orb behind the headline */
.hero-orb {
  position: absolute; top: 42%; left: 50%;
  width: min(90vw, 900px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
      rgba(253,116,30,.42) 0%,
      rgba(253,116,30,.14) 30%,
      rgba(253,116,30,0) 62%);
  filter: blur(6px);
  will-change: transform;
}

/* Rotating light rays (energy / sun) */
.hero-rays {
  position: absolute; top: 42%; left: 50%;
  width: min(140vw, 1400px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  will-change: transform;
  animation: rays-rotate 90s linear infinite;
  transform-origin: center;
}
@keyframes rays-rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Faint technical grid */
.hero-grid {
  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: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 45%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 45%, #000 30%, transparent 75%);
}

.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-eyebrow { justify-content: center; }
.hero-eyebrow::before { display: none; }

.hero-title {
  font-size: var(--text-hero);
  max-width: 16ch; margin: 0 auto 1.6rem;
}
.hero-title .line { display: block; }
.hero-title .hl {
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}
.hero-title .hl::after {
  content: "";
  position: absolute;
  left: .04em;
  right: .04em;
  bottom: .02em;
  height: .08em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(253,116,30,0), rgba(253,116,30,.55), rgba(253,116,30,0));
  transform: scaleX(.9);
  transform-origin: center;
  opacity: .55;
}
.hero-lead {
  color: var(--text-mut); font-size: var(--text-lg);
  max-width: 56ch; margin: 0 auto 2.2rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-photo-stack {
  position: absolute;
  z-index: 1;
  right: clamp(1rem, 6vw, 7rem);
  bottom: clamp(9rem, 15vw, 14rem);
  width: min(24vw, 292px);
  height: 270px;
  pointer-events: none;
  opacity: .92;
}
.hero-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: var(--surface);
  box-shadow: 0 30px 80px -36px rgba(0,0,0,.9), 0 0 42px rgba(253,116,30,.1);
}
.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02) brightness(.78);
}
.hero-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,13,16,0) 42%, rgba(12,13,16,.62)),
    radial-gradient(ellipse 65% 55% at 80% 12%, rgba(253,116,30,.18), transparent 58%);
}
.hero-shot-main {
  inset: 34px 34px 12px 0;
  border-radius: 26px;
  transform: rotate(2deg);
}
.hero-shot-small {
  width: 38%;
  height: 34%;
  border-radius: 18px;
}
.hero-shot-a {
  left: 0;
  top: 8px;
  transform: rotate(-8deg);
}
.hero-shot-b {
  right: 4px;
  bottom: 22px;
  transform: rotate(7deg);
}

/* Entrance animation (respect reduced-motion via media query) */
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow, .hero-title .line, .hero-lead, .hero-cta, .hero-photo-stack {
    opacity: 0;
    animation: hero-in .9s var(--ease-out) forwards;
  }
  .hero-eyebrow { animation-delay: .05s; }
  .hero-title .line:nth-child(1) { animation-delay: .18s; }
  .hero-title .line:nth-child(2) { animation-delay: .30s; }
  .hero-title .line:nth-child(3) { animation-delay: .42s; }
  .hero-lead { animation-delay: .56s; }
  .hero-cta { animation-delay: .68s; }
  .hero-photo-stack { animation-delay: .52s; }
  .hero-shot-a { animation: refined-float 7s var(--ease-out) 1s infinite alternate; }
  .hero-shot-b { animation: refined-float 8s var(--ease-out) 1.4s infinite alternate-reverse; }
  .hero-title .hl::after { animation: smart-underline 3.2s var(--ease-out) infinite alternate; }
  @keyframes hero-in {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes refined-float { to { translate: 0 -10px; } }
  @keyframes smart-underline { to { transform: scaleX(1.04); opacity: .78; } }
}

/* Hero stats strip */
.hero-stats {
  position: relative; z-index: 2;
  margin-top: clamp(3rem, 7vw, 5rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.stat { display: flex; flex-direction: column; gap: .4rem; }
.stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--brand);
  letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.stat-label { color: var(--text-mut); font-size: var(--text-sm); max-width: 26ch; }

/* ---- Pillars ---- */
.pillars .card { background: linear-gradient(180deg, var(--surface), var(--bg-2)); }

/* ---- Elegant project imagery ---- */
.project-visuals {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 56% 70% at 8% 30%, rgba(253,116,30,.10), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  border-block: 1px solid var(--border);
}
.project-visuals-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.project-visuals .sec-head { margin-bottom: 0; }
.elegant-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-auto-rows: 205px;
  gap: 1rem;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 28px 78px -42px rgba(0,0,0,.92);
}
.gallery-card-large { grid-row: span 2; }
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03) brightness(.82);
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,13,16,0) 38%, rgba(12,13,16,.84)),
    radial-gradient(ellipse 62% 48% at 72% 8%, rgba(253,116,30,.16), transparent 62%);
}
.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
}
.gallery-card span {
  display: block;
  color: var(--brand);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.gallery-card strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.15;
}
@media (prefers-reduced-motion: no-preference) {
  .gallery-card img {
    transform: scale(1.025);
    transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
  }
  .gallery-card:hover img {
    transform: scale(1.075);
    filter: saturate(1) contrast(1.04) brightness(.9);
  }
}

/* ---- Services band ---- */
.services-band {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(253,116,30,.08), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--border);
}
.band-cta { margin-top: 2.5rem; text-align: center; }

/* ---- Video assistant concept ---- */
.video-assistant {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 82% 45%, rgba(253,116,30,.18), transparent 62%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--border);
}
.assistant-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 460px);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.assistant-copy h2 {
  font-size: var(--text-xxl);
  margin-bottom: 1rem;
  max-width: 12ch;
}
.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}
.choice {
  font: 700 var(--text-sm)/1 var(--font-body);
  color: var(--text);
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: .75rem 1rem;
  cursor: default;
}
.choice.active,
.choice:hover {
  color: #fff;
  border-color: rgba(253,116,30,.55);
  background: rgba(253,116,30,.18);
}
.videobot-shell {
  position: relative;
  width: min(100%, 390px);
  margin-inline: auto;
  min-height: 650px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    #08090c;
  box-shadow: 0 40px 100px -35px rgba(0,0,0,.9), 0 0 58px rgba(253,116,30,.14);
  overflow: hidden;
  padding: 1rem;
}
.videobot-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(#000, transparent 72%);
  -webkit-mask-image: linear-gradient(#000, transparent 72%);
  pointer-events: none;
}
.video-topbar,
.video-footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.video-topbar {
  min-height: 52px;
  padding: .35rem .45rem .9rem;
  color: var(--text-mut);
  font-weight: 800;
  font-size: var(--text-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.video-topbar img {
  width: 74px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(253,116,30,.18));
}
.video-topbar button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.video-stage {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: grid;
  place-items: end center;
  border-radius: 26px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(253,116,30,.18), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.video-glow {
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,116,30,.34), transparent 68%);
  filter: blur(10px);
  left: 50%;
  bottom: 9%;
  transform: translateX(-50%);
}
.mascot {
  position: relative;
  z-index: 2;
  width: min(88%, 300px);
  max-height: 385px;
  object-fit: contain;
  filter: drop-shadow(0 24px 35px rgba(0,0,0,.55));
}
.speech-card {
  position: absolute;
  z-index: 4;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(253,116,30,.34);
  background: rgba(12,13,16,.82);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 1rem;
}
.speech-card span {
  display: block;
  color: var(--brand);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.speech-card strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.15;
}
.video-options {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  margin: .85rem 0;
}
.video-options a {
  text-align: center;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  padding: .72rem .45rem;
  color: var(--text);
  font-weight: 800;
  font-size: var(--text-xs);
}
.video-options a:hover {
  border-color: rgba(253,116,30,.55);
  color: var(--brand-bright);
}
.video-progress {
  position: relative;
  z-index: 4;
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
}
.video-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
}
.video-footer {
  padding-top: .9rem;
  color: var(--text-faint);
  font-size: var(--text-xs);
  font-weight: 800;
}
.video-footer a {
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  padding: .55rem .9rem;
}
@media (prefers-reduced-motion: no-preference) {
  .mascot { animation: mascot-float 5.5s var(--ease-out) infinite alternate; }
  .video-progress span { animation: video-progress 5s linear infinite alternate; }
  @keyframes mascot-float { to { transform: translateY(-12px) rotate(-1deg); } }
  @keyframes video-progress { to { width: 72%; } }
}

/* ---- Visual mobile story ---- */
.visual-story {
  background:
    radial-gradient(ellipse 55% 80% at 15% 20%, rgba(253,116,30,.12), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  border-bottom: 1px solid var(--border);
}
.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.visual-copy h2 { font-size: var(--text-xxl); margin-bottom: 1rem; }
.visual-badges {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem;
}
.visual-badges span {
  border: 1px solid rgba(253,116,30,.35);
  background: rgba(253,116,30,.08);
  color: var(--text);
  border-radius: 999px;
  padding: .55rem .9rem;
  font-size: var(--text-sm);
  font-weight: 700;
}
.phone-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.orbit-ring {
  position: absolute;
  width: min(92vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(253,116,30,.28);
  border-radius: 50%;
  transform: rotate(-18deg) scaleY(.62);
  box-shadow: inset 0 0 80px rgba(253,116,30,.06), 0 0 60px rgba(253,116,30,.08);
}
.phone-card {
  position: absolute;
  width: 240px;
  min-height: 430px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    #101116;
  box-shadow: 0 40px 90px -35px rgba(0,0,0,.9), 0 0 42px rgba(253,116,30,.12);
  padding: 1rem;
  overflow: hidden;
}
.phone-main {
  transform: rotate(-4deg) translateX(-60px);
  z-index: 3;
}
.phone-side {
  width: 190px;
  min-height: 340px;
  transform: rotate(10deg) translate(150px, 42px);
  z-index: 2;
  opacity: .95;
}
.phone-notch {
  width: 72px; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,.24);
  margin: 0 auto 1rem;
}
.phone-card figcaption {
  color: var(--brand);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.phone-screen {
  border: 1px solid var(--border);
  border-radius: 24px;
  min-height: 330px;
  padding: 1rem;
  background:
    linear-gradient(160deg, rgba(253,116,30,.12), transparent 36%),
    linear-gradient(180deg, var(--surface), var(--bg));
}
.phone-screen.compact { min-height: 238px; }
.screen-header { display: flex; align-items: center; gap: .8rem; }
.screen-header strong { display: block; font-size: .98rem; }
.screen-header small,
.phone-screen small { color: var(--text-mut); font-size: .78rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .8rem; font-weight: 800;
  background: var(--brand); color: #fff;
  box-shadow: 0 12px 28px -12px var(--brand-glow);
}
.progress-line {
  height: 10px; border-radius: 999px; background: rgba(255,255,255,.08);
  margin: 1.25rem 0; overflow: hidden;
}
.progress-line span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  border-radius: inherit;
}
.check-list { list-style: none; display: grid; gap: .85rem; }
.check-list li {
  color: var(--text-mut);
  font-size: var(--text-sm);
  display: flex; gap: .6rem; align-items: center;
}
.check-list li::before {
  content: "";
  width: 18px; height: 18px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.14);
}
.mini-photo {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1rem;
}
.mini-photo span {
  min-height: 74px; border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(253,116,30,.65), rgba(253,116,30,.08)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.14) 0 4px, transparent 4px 10px);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.mini-photo span:first-child { grid-row: span 2; }
.mini-photo span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,13,16,.05), rgba(12,13,16,.42));
}
.mini-img-solar { background-image: url('visuals/pose-panneaux-liicht.webp'); }
.mini-img-heat { background-image: url('visuals/pompe-a-chaleur-design.webp'); }
.mini-img-tech { background-image: url('visuals/tableau-borne-batterie.webp'); }
.phone-screen p { font-weight: 800; margin-bottom: .2rem; }
.mobile-avatar {
  position: absolute;
  z-index: 4;
  display: flex; align-items: center; gap: .65rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(18,19,23,.82);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: .62rem .85rem .62rem .65rem;
  box-shadow: var(--shadow-md);
}
.avatar-face {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(253,116,30,.16);
  color: var(--brand-bright);
}
.avatar-face svg { width: 19px; height: 19px; }
.mobile-avatar strong { font-size: var(--text-sm); }
.avatar-home { left: 2%; top: 18%; }
.avatar-business { right: 0; bottom: 18%; }
@media (prefers-reduced-motion: no-preference) {
  .phone-main { animation: float-main 7s var(--ease-out) infinite alternate; }
  .phone-side { animation: float-side 8s var(--ease-out) infinite alternate; }
  .mobile-avatar { animation: avatar-pulse 5s var(--ease-out) infinite alternate; }
  .avatar-business { animation-delay: 1.1s; }
  @keyframes float-main { to { transform: rotate(-2deg) translate(-68px, -14px); } }
  @keyframes float-side { to { transform: rotate(8deg) translate(154px, 28px); } }
  @keyframes avatar-pulse { to { transform: translateY(-10px); box-shadow: 0 20px 45px -22px var(--brand-glow); } }
}

.conseils-preview {
  background:
    radial-gradient(ellipse 50% 70% at 0% 10%, rgba(253,116,30,.08), transparent 60%),
    var(--bg);
}
.conseils-preview .card h3 a:hover { color: var(--brand-bright); }

/* ---- Steps ---- */
.steps {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  counter-reset: step;
}
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; position: relative;
}
.step-num {
  font-family: var(--font-display); font-weight: 700; font-size: 2.4rem;
  color: transparent; -webkit-text-stroke: 1.5px var(--brand);
  display: block; margin-bottom: .8rem; letter-spacing: -.03em;
}
.step h3 { font-size: var(--text-lg); margin-bottom: .5rem; }
.step p { color: var(--text-mut); font-size: var(--text-sm); }

/* ---- Final CTA ---- */
.cta-final {
  background:
    radial-gradient(ellipse 70% 120% at 50% 100%, rgba(253,116,30,.16), transparent 65%),
    var(--bg);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
  flex-wrap: wrap;
  background: linear-gradient(140deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--border-2); border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
}
.cta-inner h2 { font-size: var(--text-xl); margin-bottom: .6rem; }
.cta-inner .lead { font-size: var(--text-base); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-photo-stack { display: none; }
  .project-visuals-grid { grid-template-columns: 1fr; }
  .elegant-gallery { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .assistant-grid { grid-template-columns: 1fr; }
  .assistant-copy h2 { max-width: 16ch; }
  .visual-grid { grid-template-columns: 1fr; }
  .phone-stage { min-height: 520px; }
}
@media (max-width: 700px) {
  .elegant-gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery-card-large { grid-row: auto; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.2rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .videobot-shell {
    min-height: 590px;
    border-radius: 28px;
  }
  .video-stage { min-height: 380px; }
  .video-options { grid-template-columns: 1fr; }
  .phone-stage {
    min-height: 470px;
    transform: scale(.88);
    transform-origin: top center;
    margin-bottom: -3rem;
  }
  .phone-main { transform: rotate(-3deg) translateX(-44px); }
  .phone-side { transform: rotate(9deg) translate(112px, 52px); }
  @media (prefers-reduced-motion: no-preference) {
    @keyframes float-main { to { transform: rotate(-1deg) translate(-50px, -10px); } }
    @keyframes float-side { to { transform: rotate(7deg) translate(116px, 38px); } }
  }
}
