/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Recoverse brand green – matched from product box */
  --green:        #3cb53a;
  --green-dark:   #2e9230;
  --green-deeper: #1e6b20;
  --green-light:  #e8f7e8;
  --green-pale:   #f2fbf2;
  --green-glow:   rgba(60,181,58,0.18);

  --white:        #ffffff;
  --off-white:    #f8faf8;
  --bg:           #f4f9f4;
  --text:         #1a2e1a;
  --text-mid:     #3a5a3a;
  --text-muted:   #6a8a6a;
  --border:       #d0e8d0;
  --border-mid:   #b8d8b8;
  --surface:      #ffffff;
  --surface2:     #eef6ee;

  --radius:       12px;
  --radius-lg:    20px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm:    0 2px 8px rgba(0,80,0,0.08);
  --shadow-md:    0 8px 24px rgba(0,80,0,0.10);
  --shadow-lg:    0 20px 48px rgba(0,80,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.section-title em { color: var(--green); font-style: normal; }

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: var(--transition);
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px var(--green-glow);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(60,181,58,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--green-deeper);
  border: 2px solid var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn--full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--text);
}
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--green); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 4px;
}
.nav__mobile a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
  background: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(60,181,58,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(60,181,58,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  width: 100%;
}
.hero__badge {
  display: inline-block;
  background: var(--green-light);
  border: 1px solid var(--border-mid);
  color: var(--green-deeper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.hero__title-brand {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.9;
  color: var(--text);
  letter-spacing: 4px;
}
.hero__title-sub {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1;
  color: var(--green);
  letter-spacing: 3px;
  margin-top: 8px;
}
.hero__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--green);
  line-height: 1;
}
.stat span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hero image */
.hero__right { display: flex; justify-content: center; align-items: center; }
.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero__img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.hero__img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.4;
  padding: 8px 14px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--off-white);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about__text p strong { color: var(--text); }
.about__list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
}
.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* About image grid */
.about__visual { position: relative; }
.about__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.about__img {
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about__img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.about__img--1 { grid-column: 1; grid-row: 1; }
.about__img--2 { grid-column: 2; grid-row: 1 / 3; }
.about__img--3 { grid-column: 1; grid-row: 2; }
.about__img-label {
  margin-top: 16px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;
  background: var(--bg);
}
.products__tabs {
  display: flex;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  width: fit-content;
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}
.tab {
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.tab.active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 12px var(--green-glow);
}
.tab:hover:not(.active) { color: var(--green); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.products__grid.hidden { display: none; }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--green-pale);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
}
.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card__ref {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1px;
}
.product-card__body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.product-card__body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.product-card__brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green);
}
.product-card__warranty {
  font-size: 11px;
  color: var(--text-muted);
}

.products__more {
  margin-top: 56px;
  text-align: center;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.products__more p { font-size: 17px; color: var(--text-muted); }
.products__more strong { color: var(--text); }

/* ===== WHY ===== */
.why {
  padding: 100px 0;
  background: var(--green);
}
.why .section-label { color: rgba(255,255,255,0.7); }
.why .section-title { color: var(--white); }
.why .section-title em { color: rgba(255,255,255,0.8); font-style: italic; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.why__item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.why__item:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.why__icon {
  width: 48px; height: 48px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.why__item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.why__item p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ===== BRANDS ===== */
.brands {
  padding: 80px 0;
  background: var(--off-white);
}
.brands__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.brand-pill {
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  color: var(--text-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 20px;
  border-radius: 40px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.brand-pill:hover {
  border-color: var(--green);
  color: var(--green-deeper);
  background: var(--green-pale);
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--bg);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__text p {
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__info-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact__info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact__info-item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.contact__info-item a,
.contact__info-item span {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact__info-item a:hover { color: var(--green); }

/* Form */
.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}
.form-group input,
.form-group textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aac0aa; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
  background: var(--white);
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ===== CONTACT INFO ADDRESS ===== */
.contact__info address {
  font-style: normal;
  line-height: 1.7;
  font-size: 14px;
  color: var(--text-mid);
}

/* ===== PRODUCT CARD – details button ===== */
.btn--details {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 9px 0;
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn--details:hover {
  background: var(--green);
  color: var(--white);
}
.product-card { cursor: pointer; }

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,30,10,0.65);
  backdrop-filter: blur(4px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
body.modal-lock { overflow: hidden; }

.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  animation: modalIn 0.28s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.93) translateY(16px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  line-height: 1;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  z-index: 1;
}
.modal__close:hover { color: var(--text); background: var(--surface2); }

.modal__body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
}

.modal__img-wrap {
  position: relative;
  background: var(--green-pale);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  min-height: 320px;
}
.modal__img-wrap img {
  max-height: 260px;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}
.modal__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 6px;
}

.modal__info {
  padding: 40px 36px 36px;
}
.modal__ref {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.modal__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal__specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  background: var(--surface2);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.modal__spec-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
}
.modal__spec-label {
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.modal__spec-val {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.modal__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.modal__brand-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1.5px solid var(--border-mid);
  border-radius: 8px;
}

@media (max-width: 640px) {
  .modal__body { grid-template-columns: 1fr; }
  .modal__img-wrap { border-radius: var(--radius-lg) var(--radius-lg) 0 0; min-height: 200px; padding: 24px; }
  .modal__info { padding: 24px; }
  .modal__title { font-size: 26px; }
}

/* ===== FOOTER ADDRESS ===== */
.footer__address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo .logo-text { color: var(--white); }
.footer__brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 16px;
}
.footer__tagline {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  color: var(--green) !important;
  margin-top: 8px !important;
  text-transform: uppercase;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.footer__links a,
.footer__links span {
  font-size: 13px;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--green); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .why__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__stats { gap: 24px; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .contact__form { padding: 24px; }
  .about__img-grid { grid-template-columns: 1fr; }
  .about__img--2 { grid-row: auto; }
  .about__img--3 { grid-row: auto; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
