/* Premium Homepage Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

.page-home {
  --header-h: 88px;
  --premium-gold: #c9a227;
  --premium-gold-glow: rgba(201, 162, 39, 0.35);
}

.page-home body,
.page-home {
  font-family: 'Outfit', 'DM Sans', sans-serif;
}

/* Top bar */
.top-bar {
  background: linear-gradient(90deg, #0a2e18, #145a2a);
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar a {
  color: rgba(255,255,255,0.88);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover { color: var(--gold-light); }

.top-bar-dot {
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
}

.top-bar-social {
  gap: 10px;
}

.top-bar-social-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: all 0.25s ease;
}

.top-bar-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1f1c !important;
  transform: translateY(-1px);
}

/* Transparent header on home */
.page-home .header {
  top: 41px;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: var(--header-h);
}

.page-home .header.scrolled,
.page-home .header.nav-solid {
  top: 0;
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 8px 32px rgba(13,59,31,0.12);
}

.page-home .header:not(.scrolled):not(.nav-solid) .logo-text,
.page-home .header:not(.scrolled):not(.nav-solid) .nav-links a {
  color: rgba(255,255,255,0.92);
}

.page-home .header:not(.scrolled):not(.nav-solid) .nav-links a.active,
.page-home .header:not(.scrolled):not(.nav-solid) .nav-links a:hover {
  color: var(--gold-light);
}

.page-home .header:not(.scrolled):not(.nav-solid) .phone-link {
  color: var(--gold-light);
}

.page-home .header:not(.scrolled):not(.nav-solid) .hamburger span {
  background: #fff;
}

.page-home .header:not(.scrolled):not(.nav-solid) .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* Premium Hero Banner — 1425 × 600 */
.hero-banner-shell {
  background: #071f10;
}

.page-home .hero.hero-premium {
  margin-top: 0;
  min-height: unset;
  position: relative;
  width: 100%;
  max-width: 1425px;
  height: 600px;
  min-height: 600px;
  max-height: 600px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: #071f10;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.hero-premium-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-premium-bg .hero-slide img {
  animation: kenBurns 14s ease-in-out infinite alternate;
  transform: scale(1.06);
  object-fit: cover;
  object-position: center;
}

.hero-slide.active img { animation-play-state: running; }

@keyframes kenBurns {
  from { transform: scale(1.04); }
  to { transform: scale(1.14); }
}

.hero-premium-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7,31,16,0.94) 0%, rgba(7,31,16,0.78) 38%, rgba(7,31,16,0.35) 62%, rgba(7,31,16,0.15) 100%),
    linear-gradient(0deg, rgba(7,31,16,0.55) 0%, transparent 45%),
    radial-gradient(ellipse at 78% 42%, rgba(201,162,39,0.12) 0%, transparent 55%);
  z-index: 1;
}

.hero-banner-accent {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  opacity: 0.6;
}

.hero-premium-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: calc(41px + var(--header-h) + 12px) 72px 56px;
  box-sizing: border-box;
}

.hero-premium-content {
  max-width: 620px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-premium-content.text-out {
  opacity: 0;
  transform: translateY(10px);
}

.hero-premium-content.text-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}

.hero-premium-badge .pulse {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.hero-premium-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.hero-premium-title .highlight {
  background: linear-gradient(135deg, #f0c040 0%, #ffe08a 50%, #c9a227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-premium-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-premium-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-premium {
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-gold {
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #1a1f1c;
  box-shadow: 0 8px 32px var(--premium-gold-glow);
  border: none;
}

.btn-premium-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--premium-gold-glow);
}

.btn-premium-glass {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-premium-glass:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.hero-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(7,31,16,0.45);
  backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-banner-arrow:hover {
  background: rgba(201,162,39,0.85);
  border-color: var(--gold-light);
  color: #1a1f1c;
  transform: translateY(-50%) scale(1.06);
}

.hero-banner-prev { left: 20px; }
.hero-banner-next { right: 20px; }

.hero-slider-nav {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-slider-nav button {
  position: relative;
  width: 40px;
  height: 5px;
  border-radius: 5px;
  border: none;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: width 0.3s ease;
  padding: 0;
  overflow: hidden;
}

.hero-slider-nav button.active {
  width: 52px;
  background: rgba(255,255,255,0.2);
}

.hero-dot-progress {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--gold-light), #ffe08a);
  border-radius: inherit;
}

.hero-slider-nav button.active .hero-dot-progress {
  animation: slideProgress 5s linear forwards;
}

@keyframes slideProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* Floating stats */
.stats-float {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  margin-bottom: 0;
}

.stats-float-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(13,59,31,0.14);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.stat-float-item {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.stat-float-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--gray-200);
}

.stat-float-item:hover { background: var(--green-50); }

.stat-float-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-float-item .num span {
  font-size: 1.4rem;
  color: var(--gold);
}

.stat-float-item p {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Premium section header */
.premium-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.premium-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}

.premium-header .tag::before,
.premium-header .tag::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-600));
}

.premium-header .tag::after {
  background: linear-gradient(90deg, var(--green-600), transparent);
}

.premium-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--green-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

/* Why choose - premium bento */
.why-premium {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.why-premium-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(34,160,74,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(201,162,39,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #f8fbf9 0%, #fff 50%, #f4faf6 100%);
  z-index: 0;
}

.why-premium .container {
  position: relative;
  z-index: 1;
}

.why-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.why-bento.reveal.visible .why-card {
  animation: whyCardIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.why-bento.reveal.visible .why-card:nth-child(1) { animation-delay: 0.05s; }
.why-bento.reveal.visible .why-card:nth-child(2) { animation-delay: 0.12s; }
.why-bento.reveal.visible .why-card:nth-child(3) { animation-delay: 0.19s; }
.why-bento.reveal.visible .why-card:nth-child(4) { animation-delay: 0.26s; }
.why-bento.reveal.visible .why-card:nth-child(5) { animation-delay: 0.33s; }

@keyframes whyCardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.why-card {
  background: #fff;
  border: 1px solid rgba(13,59,31,0.08);
  border-radius: 24px;
  padding: 30px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,59,31,0.04);
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,160,74,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(13,59,31,0.12);
  border-color: rgba(34,160,74,0.15);
}

.why-card:hover::after { opacity: 1; }

.why-card-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(13,59,31,0.05);
  font-family: 'Outfit', sans-serif;
  transition: color 0.4s ease;
}

.why-card:hover .why-card-num {
  color: rgba(34,160,74,0.12);
}

.why-card.large {
  grid-column: span 2;
  grid-row: span 2;
  border: none;
  padding: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 32px 64px rgba(7,31,16,0.22);
}

.why-card.large::after { display: none; }

.why-card.large:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 72px rgba(7,31,16,0.28);
}

.why-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card.large:hover .why-card-bg img {
  transform: scale(1.06);
}

.why-card-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(7,31,16,0.95) 0%, rgba(7,31,16,0.55) 45%, rgba(7,31,16,0.2) 100%),
    linear-gradient(135deg, rgba(13,59,31,0.4) 0%, transparent 60%);
}

.why-card-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  color: #fff;
}

.why-card-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.why-card.large h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  line-height: 1.25;
}

.why-card.large p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 420px;
}

.why-card-stats {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.why-stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.why-stat-pill strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
}

.why-stat-pill span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, var(--green-50), #fff);
  border: 1px solid rgba(34,160,74,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(34,160,74,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover .why-card-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(34,160,74,0.18);
}

.why-card.large .why-card-icon {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  box-shadow: none;
  margin-bottom: 14px;
}

.why-card.large:hover .why-card-icon {
  transform: none;
}

.why-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.why-card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-600);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-card:hover .why-card-link {
  opacity: 1;
  transform: translateY(0);
}

.why-card-link:hover { color: var(--gold); }

/* Premium about */
.about-premium {
  background: linear-gradient(180deg, #fff 0%, var(--green-50) 100%);
}

.about-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(13,59,31,0.15);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold-light);
  border-radius: 24px;
  z-index: -1;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -24px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: #fff;
  padding: 24px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(13,59,31,0.3);
}

.about-experience-badge .year {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-checklist {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.about-checklist li::before {
  content: '✓';
  width: 26px;
  height: 26px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Premium products carousel */
.products-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.products-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.products-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.products-carousel-track .product-premium {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
  height: auto;
}

.products-carousel-track .product-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(13,59,31,0.12);
  border-color: transparent;
}

.product-premium-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(180deg, #f8fbf9 0%, #eef5f0 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

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

.product-premium:hover .product-premium-img img {
  transform: scale(1.04);
}

.product-premium-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13,59,31,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}

.product-premium-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-premium-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 8px;
}

.product-premium-body p {
  font-size: 0.88rem;
  color: var(--gray-700);
  margin-bottom: 14px;
  line-height: 1.6;
  flex: 1;
}

.product-premium-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-700);
  margin-top: auto;
}

.products-carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(13,59,31,0.08);
  transition: all 0.3s ease;
  z-index: 2;
}

.products-carousel-btn:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
  transform: scale(1.05);
}

.products-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.products-carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(13,59,31,0.18);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.products-carousel-dots button.active {
  width: 28px;
  border-radius: 8px;
  background: var(--green-700);
}

/* VMV premium */
.vmv-premium {
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}

.vmv-premium::before {
  content: '';
  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='%23ffffff' 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");
}

.vmv-premium .premium-header h2 { color: #fff; }
.vmv-premium .premium-header .tag { color: var(--gold-light); }
.vmv-premium .premium-header .tag::before { background: linear-gradient(90deg, transparent, var(--gold-light)); }
.vmv-premium .premium-header .tag::after { background: linear-gradient(90deg, var(--gold-light), transparent); }

.vmv-premium .vmv-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.vmv-premium .vmv-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.vmv-premium .vmv-card h3 { color: #fff; }
.vmv-premium .vmv-card p { color: rgba(255,255,255,0.72); }
.vmv-premium .vmv-icon { background: rgba(255,255,255,0.1); }

/* Testimonials premium */
.testimonials-premium {
  background: linear-gradient(180deg, var(--green-50) 0%, #fff 100%);
}

.testimonial-premium {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 16px 48px rgba(13,59,31,0.08);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.35s;
}

.testimonial-premium:hover { transform: translateY(-4px); }

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-premium .testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  padding-top: 0;
  margin-bottom: 28px;
}

.testimonial-premium::before { display: none; }

/* Partners marquee */
.partners-marquee {
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partners-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.partners-track img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.7;
  transition: all 0.3s;
}

.partners-track img:hover {
  filter: none;
  opacity: 1;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* CTA premium */
.cta-premium {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2e18 0%, #1a7a38 50%, #0d3b1f 100%);
}

.cta-premium::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,192,64,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
}

.cta-premium-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-premium h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-premium p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 520px;
}

.cta-premium-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s;
  line-height: 0;
}

.whatsapp-float svg {
  display: block;
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* News premium cards */
.news-premium-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.news-premium-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: stretch;
  transition: all 0.35s;
}

.news-premium-card:hover {
  box-shadow: 0 20px 48px rgba(13,59,31,0.1);
  transform: translateY(-4px);
}

.news-premium-card .thumb {
  position: relative;
  width: 220px;
  min-height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--green-100);
}

.news-premium-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.news-premium-card:hover .thumb img {
  transform: scale(1.06);
}

.news-premium-card .body {
  padding: 28px;
  flex: 1;
}

.news-premium-card .date {
  font-size: 0.78rem;
  color: var(--green-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1100px) {
  .page-home .hero.hero-premium {
    max-width: 100%;
    border-radius: 0;
  }
  .hero-premium-grid { padding: 0 48px; }
  .hero-banner-prev { left: 12px; }
  .hero-banner-next { right: 12px; }
  .why-bento { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-card.large { grid-column: span 2; grid-row: span 1; min-height: 320px; }
  .why-card-stats { margin-top: 18px; }
  .products-carousel-track .product-premium { flex: 0 0 calc((100% - 24px) / 2); }
  .products-carousel-btn { width: 42px; height: 42px; }
  .cta-premium-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-premium p { margin: 0 auto; }
  .cta-premium-btns { justify-content: center; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .page-home .header { top: 0; }
  .page-home .hero.hero-premium {
    height: clamp(320px, calc(100vw * 600 / 1425), 600px);
    min-height: clamp(320px, calc(100vw * 600 / 1425), 600px);
    max-height: none;
  }
  .hero-premium-grid { padding: calc(var(--header-h) + 12px) 24px 48px; }
  .hero-premium-title { font-size: 1.85rem; }
  .hero-premium-desc { font-size: 0.92rem; margin-bottom: 20px; }
  .hero-premium-badge { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 14px; }
  .btn-premium { padding: 12px 22px; font-size: 0.85rem; }
  .hero-banner-arrow { width: 40px; height: 40px; }
  .hero-banner-prev { left: 8px; }
  .hero-banner-next { right: 8px; }
  .stats-float-inner { grid-template-columns: 1fr 1fr; }
  .stat-float-item:nth-child(2)::after { display: none; }
  .about-premium-grid { grid-template-columns: 1fr; }
  .why-bento { grid-template-columns: 1fr; gap: 16px; }
  .why-card.large { grid-column: span 1; min-height: 300px; }
  .why-card { padding: 24px; }
  .why-card-content { padding: 28px; }
  .why-card-link { opacity: 1; transform: none; }
  .why-card-num { font-size: 2.2rem; }
  .why-premium { padding: 72px 0; }
  .products-carousel-track .product-premium { flex: 0 0 100%; }
  .products-carousel { gap: 6px; }
  .products-carousel-btn { width: 38px; height: 38px; }
  .news-premium-grid { grid-template-columns: 1fr; }
  .news-premium-card { flex-direction: column; }
  .news-premium-card .thumb { width: 100%; min-height: 180px; height: 180px; }
}

@media (max-width: 480px) {
  .stats-float-inner { grid-template-columns: 1fr; }
  .stat-float-item::after { display: none !important; }
}
