/* ============================================================
   VA PLASTOPACK — home.css
   Styles specific to the Home / Landing page
   ============================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 60px) 60px 80px;
  background: linear-gradient(160deg, var(--dark) 0%, var(--blue-deeper) 60%, var(--dark) 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 111, 190, 0.15);
  border: 1px solid rgba(27, 111, 190, 0.35);
  padding: 7px 18px;
  margin-bottom: 30px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7ec6ff;
}
.hero-badge .badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 108px);
  line-height: .93;
  letter-spacing: 1px;
  margin-bottom: 26px;
  animation: fadeUp .8s ease both;
}
.hero-title .t-white   { display: block; color: var(--white); }
.hero-title .t-blue    { display: block; color: var(--blue); }
.hero-title .t-orange  { display: block; color: var(--orange); }
.hero-title .t-outline {
  display: block;
  -webkit-text-stroke: 2px rgba(255,255,255,0.22);
  color: transparent;
}

.hero-sub {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.75;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 44px;
  animation: fadeUp .8s .18s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  animation: fadeUp .8s .32s ease both;
}

.hero-floating-stats {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp .8s .45s ease both;
}

/* ── ABOUT ── */
.about-section {
  background: var(--blue-deeper);
  position: relative;
  overflow: hidden;
}
.about-watermark {
  position: absolute;
  right: -20px; top: -30px;
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(27, 111, 190, 0.06);
  pointer-events: none;
  line-height: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.18;
  margin-bottom: 24px;
}
.about-heading em { color: var(--orange); font-style: italic; }
.about-text {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-quote {
  border-left: 3px solid var(--orange);
  background: rgba(245, 166, 35, 0.07);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: #c8dff5;
  line-height: 1.7;
  font-style: italic;
  margin-top: 28px;
}

.mv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(27, 111, 190, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mv-row {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(27, 111, 190, 0.15);
  transition: background var(--transition);
}
.mv-row:last-child { border-bottom: none; }
.mv-row:hover { background: rgba(27, 111, 190, 0.1); }
.mv-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.mv-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.mv-text { font-size: 15px; color: var(--silver); line-height: 1.7; }

/* ── PRODUCTS SECTION (homepage teaser) ── */
.products-section { background: var(--dark); }
.products-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.products-heading span { color: var(--orange); }
.products-sub { font-size: 16px; color: var(--silver); margin-bottom: 52px; }

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

.prod-home-card {
  background: var(--blue-deeper);
  border: 1px solid rgba(27, 111, 190, 0.2);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.prod-home-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.prod-home-card:hover {
  border-color: rgba(27, 111, 190, 0.5);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.prod-home-card:hover::before { transform: scaleX(1); }
.prod-num {
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(27, 111, 190, 0.1);
  line-height: 1;
  transition: color var(--transition);
}
.prod-home-card:hover .prod-num { color: rgba(245, 166, 35, 0.15); }
.prod-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 10px;
  background: rgba(27, 111, 190, 0.15);
  border: 1px solid rgba(27, 111, 190, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.prod-home-card:hover .prod-icon-wrap {
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.3);
}
.prod-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.prod-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── WHY US ── */
.why-section { background: var(--offwhite); }
.why-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  color: var(--blue-deeper);
  letter-spacing: 1px;
  margin-bottom: 52px;
}
.why-heading span { color: var(--orange); }
.why-section .section-label { color: var(--blue); }
.why-section .section-label::before { background: var(--blue); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(13, 79, 140, 0.07);
  border: 1px solid rgba(27, 111, 190, 0.1);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13, 79, 140, 0.14);
  border-color: var(--orange);
}
.why-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,111,190,0.12), rgba(245,166,35,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
}
.why-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-deeper);
  margin-bottom: 10px;
}
.why-text { font-size: 13px; color: #6b87a8; line-height: 1.7; }

/* ── PROMISE BAND ── */
.promise-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deeper) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promise-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(245,166,35,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(27,111,190,0.2) 0%, transparent 55%);
}
.promise-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.promise-quote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.3;
  margin: 20px 0 28px;
}
.promise-quote em { color: var(--orange); }
.promise-sub { font-size: 16px; color: var(--silver); line-height: 1.7; }

/* ── RESPONSIVE HOME ── */
@media (max-width: 1100px) {
  .hero-floating-stats { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: calc(var(--nav-height) + 40px) 36px 60px; }
}
@media (max-width: 768px) {
  .hero { padding: calc(var(--nav-height) + 32px) 20px 52px; }
  .hero-actions { flex-wrap: wrap; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}
