/* ============================================
   NERMAN LION BARTENDER – LANDING PAGE CSS
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark:  #9A7A2A;
  --dark:       #0A0806;
  --dark-2:     #12100D;
  --dark-3:     #1C1812;
  --dark-4:     #252018;
  --amber:      #8B5E0A;
  --text:       #E8DCC8;
  --text-dim:   #9A8E7A;
  --white:      #FFFFFF;
  --red-accent: #8B1A1A;
  --green:      #2A6B3C;
  --ff-serif:   'Playfair Display', Georgia, serif;
  --ff-cinzel:  'Cinzel', serif;
  --ff-sans:    'Inter', system-ui, sans-serif;
  --radius:     12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

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

/* ============ UTILITIES ============ */
.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid var(--gold-dark);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

.btn-large { font-size: 1.15rem; padding: 20px 40px; }

.btn-shopee {
  display: inline-flex;
  align-items: center;
  background: #EE4D2D;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 100px;
  transition: var(--transition);
}
.btn-shopee:hover { background: #CC3A1E; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-dim);
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  transition: var(--transition);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--ff-cinzel);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo span {
  color: var(--gold);
  font-size: 0.8rem;
  display: block;
  letter-spacing: 0.08em;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  animation: pulse-cta 2.5s infinite ease-in-out;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

@keyframes pulse-cta {
  0% { transform: scale(1); box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4); }
  50% { transform: scale(1.06); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.6); }
  100% { transform: scale(1); box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4); }
}

.nav-cta:hover { transform: scale(1.1) !important; box-shadow: 0 10px 40px rgba(201,168,76,0.6); animation-play-state: paused; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(139, 94, 10, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(139, 26, 26, 0.1) 0%, transparent 50%),
    var(--dark);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-80vh) translateX(40px); opacity: 0; }
}

.hero-content {
  flex: 1;
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.85;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.7;
  max-width: 500px;
}

.hero-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--ff-cinzel);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label { font-size: 0.78rem; color: var(--text-dim); }
.stat-divider { width: 1px; height: 40px; background: rgba(201,168,76,0.25); }

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: auto;
}

.hero-image-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  object-fit: cover;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(201,168,76,0.15));
  animation: float-img 5s ease-in-out infinite;
}

@keyframes float-img {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.6;
  animation: bounce-down 2s ease-in-out infinite;
}

.scroll-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ PAIN ============ */
.pain {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.pain::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pain-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pain-card:hover::before { opacity: 1; }

.pain-icon { font-size: 2.5rem; margin-bottom: 16px; }

.pain-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 0.94rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ============ SOLUTION ============ */
.solution {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-text .section-tag { margin-bottom: 16px; }

.solution-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.solution-intro {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.7;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.solution-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  min-width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-list li strong { color: var(--white); }
.solution-list li div { font-size: 0.96rem; color: var(--text-dim); line-height: 1.6; }

.solution-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.7;
}

.solution-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-image-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  animation: rotate-ring 12s linear infinite;
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.solution-image img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 16px 48px rgba(201,168,76,0.25));
  position: relative;
  z-index: 1;
}

/* ============ LIFESTYLE ============ */
.lifestyle {
  padding: 0;
  background: var(--dark-3);
  overflow: hidden;
}

.lifestyle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.lifestyle-image {
  position: relative;
  overflow: hidden;
}

.lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
  min-height: 500px;
}

.lifestyle-image:hover img { transform: scale(1.04); }

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,8,6,0.75) 0%, rgba(10,8,6,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.lifestyle-tag {
  font-family: var(--ff-cinzel);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 12px;
}

.lifestyle-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.6;
  max-width: 360px;
}

.lifestyle-quote strong { color: var(--gold-light); }

.lifestyle-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.lifestyle-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
}

.lifestyle-content p {
  font-size: 0.97rem;
  color: var(--text-dim);
  line-height: 1.75;
}

.lifestyle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.lifestyle-tags span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(201,168,76,0.06);
  transition: var(--transition);
}

.lifestyle-tags span:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}

/* ============ PRODUCTS ============ */
.products {
  padding: 100px 0;
  background: var(--dark-2);
}

.products-image-hero {
  margin-bottom: 64px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  max-height: 500px;
}

.products-image-hero img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s ease;
}

.products-image-hero:hover img { transform: scale(1.03); }

.product-img-wrap {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 24px;
  background: var(--dark-2);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.product-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.product-card--featured {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(160deg, var(--dark-3), rgba(139,94,10,0.12));
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(201,168,76,0.12);
}

.product-card--featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.product-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
}

.product-mood {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.product-emoji { font-size: 2.5rem; margin-bottom: 12px; }

.product-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

.scent-layers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  margin-bottom: 16px;
}

.scent-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-dim);
}

.scent-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.08);
  padding: 2px 8px;
  border-radius: 4px;
  min-width: 36px;
  text-align: center;
}

.product-vibe {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ============ BENEFITS ============ */
.benefits {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.07);
  border-radius: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.06), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.benefit-item:hover::after { opacity: 1; }

.benefit-icon { font-size: 2.8rem; margin-bottom: 16px; }

.benefit-item h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============ PROOF ============ */
.proof {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--dark-2), rgba(139,94,10,0.1), var(--dark-2));
  text-align: center;
  position: relative;
}

.proof-inner { position: relative; }

.proof-quote-large {
  font-family: var(--ff-serif);
  font-size: 12rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.08;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.proof blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 24px;
  position: relative;
}

.proof blockquote strong {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-brand {
  font-family: var(--ff-cinzel);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 36px;
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hashtags span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  transition: var(--transition);
}

.hashtags span:hover {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  cursor: default;
}

/* ============ HOW TO ============ */
.howto {
  padding: 100px 0;
  background: var(--dark);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 40px 24px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 16px;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.25);
}

.step-number {
  font-family: var(--ff-cinzel);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  margin-top: 60px;
  flex-shrink: 0;
}

/* ============ ORDER ============ */
.order {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.order::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(139,94,10,0.15) 0%, transparent 60%);
}

.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.order-text .section-tag { margin-bottom: 16px; }

.order-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.order-text > p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 32px;
}

.order-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.perk span {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.order-note {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.order-note strong { color: var(--gold-light); }

.order-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.order-visual img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.6));
  position: relative;
  z-index: 1;
}

.order-badge {
  position: absolute;
  bottom: 24px;
  right: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 2;
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.badge-icon { font-size: 2rem; }

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text strong {
  font-family: var(--ff-cinzel);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.badge-text span {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 80px 0 0;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-family: var(--ff-cinzel);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-col strong {
  color: var(--white);
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
}

.footer-brand-desc {
  max-width: 320px;
}

.footer-hashtags {
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-top: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 30px 0;
  text-align: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(154,142,122,0.4);
}

/* ============ FINAL STATEMENT SECTION ============ */
.final-tagline {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(rgba(10,8,6,0.85), rgba(10,8,6,0.85)),
    url('images/lion_hero.jpg') no-repeat center center / cover;
  background-attachment: fixed;
  padding: 100px 24px;
}

.tagline-card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(10, 8, 6, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold-dark);
  padding: 100px 40px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,1);
}

.tagline-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}

.tagline-label {
  font-family: var(--ff-cinzel);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold-dark);
  margin-bottom: 30px;
  opacity: 0.8;
}

.tagline-main {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.gold-shimmer {
  background: linear-gradient(
    90deg,
    #9A7A2A 0%,
    #C9A84C 25%,
    #FFFFFF 50%,
    #C9A84C 75%,
    #9A7A2A 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-effect 4s linear infinite;
}

@keyframes shimmer-effect {
  to { background-position: 200% center; }
}

.tagline-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.tagline-divider::before,
.tagline-divider::after {
  content: '';
  height: 1px;
  width: 100px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.diamond { color: var(--gold); font-size: 1.2rem; }

.tagline-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-light);
  opacity: 0.9;
}

.tagline-corner-decor {
  position: absolute;
  width: 40px; height: 40px;
  border: 2px solid var(--gold);
}

.tagline-corner-decor.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.tagline-corner-decor.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.tagline-corner-decor.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.tagline-corner-decor.br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .solution-inner,
  .order-inner { grid-template-columns: 1fr; gap: 48px; }
  .solution-image { order: -1; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .product-card--featured { transform: none; }
  .product-card--featured:hover { transform: translateY(-8px); }
  .lifestyle-inner { grid-template-columns: 1fr; }
  .lifestyle-content { padding: 48px 32px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 8px 16px; min-height: 70px; }
  .brand-logo { height: 20px; }
  .nav-logo { gap: 0; }
  .nav-logo span { 
    font-size: 0.55rem; 
    padding-left: 0;
    letter-spacing: 0.08em;
    width: auto;
    text-align: left;
  }
  .nav-cta { padding: 8px 18px; font-size: 0.75rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-info, .footer-legal, .footer-contact { text-align: center; }
  .footer-brand-logo { margin: 0 auto 20px; }
  .footer-brand-desc { margin: 0 auto 12px; }
  .footer-hashtags { justify-content: center; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 80px;
    min-height: unset;
  }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-image { max-width: 100%; margin-top: 48px; }
  .products-image-hero img { height: 400px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin-top: 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .order-perks { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: flex-start; }
  .solution-image-ring { width: 280px; height: 280px; }
  .lifestyle-content { padding: 40px 24px; }
  .lifestyle-quote { font-size: 1rem; }
  .product-img-wrap { height: 350px; }
}

/* ============ ANIMATE ON SCROLL ============ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============ PAIN – BAR STYLE NUMBERS ============ */
.pain-number {
  font-family: var(--ff-cinzel);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.8;
}

.pain-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 16px;
}

/* ============ PRODUCT – BAR ACCENT ============ */
.product-bar-accent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 12px;
}

.bar-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.bar-label {
  font-family: var(--ff-cinzel);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--white);
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(201,168,76,0.5);
}

/* ============ BENEFIT – DIAMOND MARK ============ */
.benefit-mark {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

/* ============ ORDER FORM ============ */
.order-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-3);
  color: var(--text);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  font-size: 1.05rem;
  padding: 18px 32px;
  letter-spacing: 0.03em;
}

/* ============ FORM SUCCESS STATE ============ */
.form-success {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  margin-top: 24px;
}

.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============ ORDER BADGE TEXT ONLY ============ */
.badge-text-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.badge-text-only strong {
  font-family: var(--ff-cinzel);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
}

.badge-text-only span {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
}

/* ============ BRAND LOGO ============ */
.brand-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.3));
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: var(--ff-cinzel);
  font-weight: 900;
  color: var(--gold);
}

.nav-logo span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  opacity: 1;
  padding-left: 0;
  padding-top: 2px;
  line-height: 1;
  text-transform: uppercase;
  width: auto;
}

.footer-brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

/* ============ BOTTOM PROMO BAR (NEW) ============ */
.bottom-promo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 12px 0;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.8);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.promo-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.promo-text {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 15px;
}

.promo-tag {
  background: var(--gold);
  color: #000;
  padding: 3px 10px;
  font-weight: 950;
  font-size: 0.7rem;
  border-radius: 4px;
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% { transform: scale(1); box-shadow: 0 0 0px var(--gold); }
  50% { transform: scale(1.05); box-shadow: 0 0 15px var(--gold); }
  100% { transform: scale(1); box-shadow: 0 0 0px var(--gold); }
}

.promo-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-cinzel);
}

.bottom-promo-bar .timer-display {
  font-size: 1.4rem;
  font-weight: 950;
  color: var(--gold);
  min-width: 100px;
  text-align: center;
}

.promo-btn {
  background: var(--gold);
  color: #000;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 900;
  border-radius: 4px;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

.promo-btn:hover {
  background: var(--white);
  transform: scale(1.05);
}

/* ============ HERO PRICE & TIMER ============ */
.hero-price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 32px 0;
  background: rgba(255,255,255,0.03);
  padding: 24px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  max-width: 650px;
}

.h-price-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-timer-box {
  text-align: right;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 30px;
}

.h-timer-label {
  font-size: 0.65rem;
  color: var(--gold-dark);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 5px;
}

.h-timer-val {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 950;
  color: var(--gold);
  font-family: var(--ff-cinzel);
}

.old-price {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--text-dim);
  opacity: 0.5;
}

.new-price {
  font-size: 2.2rem;
  font-weight: 950;
  color: var(--white);
  font-family: var(--ff-cinzel);
  line-height: 1;
}

.price-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 4px;
  margin-top: 4px;
  width: fit-content;
}

/* ============ PROMO PACKAGES ============ */
.promo-packages {
  padding: 100px 0;
  background: var(--bg-black);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.package-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.package-card:hover {
  border-color: var(--gold-dark);
  background: rgba(255,255,255,0.05);
  transform: translateY(-10px);
}

.package-card--featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  padding: 4px 20px;
  font-weight: 900;
  font-size: 0.75rem;
  white-space: nowrap;
}

.package-header {
  font-family: var(--ff-cinzel);
  font-size: 0.8rem;
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.package-qty {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.package-price {
  margin-bottom: 30px;
}

.p-old {
  display: block;
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-dim);
  margin-bottom: 5px;
}

.p-new {
  font-family: var(--ff-cinzel);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
}

.package-gift {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-bottom: 30px;
}

.gift-img-box {
  width: 100%;
  height: 120px;
  margin: 0 auto 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.img-small {
  width: 45% !important;
  margin: 0 5px;
}

.gift-tag {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #C94C4C;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 8px;
  white-space: nowrap;
}

.package-gift p {
  font-size: 0.8rem;
  color: var(--gold-light);
  margin: 0;
}

.btn-package {
  display: inline-block;
  width: 100%;
  padding: 15px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.btn-package:hover {
  background: var(--gold);
  color: #000;
}

/* ============ FORM GIFT NOTICE ============ */
.gift-notice {
  margin-top: 12px;
  padding: 10px 15px;
  background: rgba(201,168,76,0.1);
  border-left: 3px solid var(--gold);
  font-size: 0.85rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.gift-notice .icon { font-size: 1.1rem; }

@media (max-width: 768px) {
  .bottom-promo-bar { 
    padding: 10px 0;
  }
  .promo-text { font-size: 0.75rem; gap: 10px; }
  .promo-tag { font-size: 0.6rem; padding: 2px 6px; }
  .bottom-promo-bar .timer-display { font-size: 1.1rem; min-width: 70px; }
  .promo-btn { padding: 8px 15px; font-size: 0.75rem; }
  
  .hero-price-wrap { 
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    gap: 10px; 
    padding: 12px 15px;
    margin: 15px 0;
    max-width: 100%;
    border-radius: 8px;
  }
  .h-price-left { gap: 2px; }
  .old-price { font-size: 0.7rem; }
  .new-price { font-size: 1.1rem; }
  .price-badge { font-size: 0.5rem; padding: 2px 5px; }
  
  .hero-timer-box { 
    border-left: 1px solid rgba(255,255,255,0.1); 
    border-top: none;
    padding-left: 12px; 
    padding-top: 0;
    text-align: right;
    flex-shrink: 0;
  }
  .h-timer-label { font-size: 0.45rem; white-space: nowrap; margin-bottom: 2px; }
  .h-timer-val { font-size: 1.1rem; line-height: 1; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card--featured { transform: none; }
  .package-card { padding: 30px 20px; }
}

@keyframes pulse-subtle {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
