/* ── HOME PAGE SPECIFIC STYLES ── */

/* Hero */
.home-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50% 10%;
  transform: scale(1.0);
  transition: transform 6s ease;
}

.home-hero:hover .hero-bg { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 8%;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: #FF6B00;
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
}

.hero-accent {
  display: block;
  color: #FF6B00;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.btn-white-solid {
  background: white;
  color: var(--orange);
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-white-solid:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); text-decoration: none; color: var(--orange); }

.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: white; text-decoration: none; color: white; }

/* Stats Bar */
.stats-bar {
  background: white;
  border-bottom: 3px solid var(--orange-light);
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: #e8e8e8;
}

/* What Section */
.what-section {
  padding: 100px 5%;
  background: var(--grey-light);
}

.what-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .what-inner { grid-template-columns: 1fr; gap: 48px; }
}

.what-text .section-label { display: block; margin-bottom: 16px; }

.what-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.what-text p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.what-text .btn-primary { margin-top: 12px; }

.what-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.what-card {
  background: white;
  border-radius: 16px;
  padding: 28px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.what-card--good {
  border-left: 5px solid var(--orange);
}

.what-card--bad {
  border-left: 5px solid #ddd;
  opacity: 0.8;
}

.wc-icon { font-size: 2rem; flex-shrink: 0; }

.wc-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.wc-text p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

/* Target Grid */
.targets-section {
  padding: 80px 0 0;
}

.targets-header {
  text-align: center;
  padding: 0 5% 48px;
}

.targets-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--text-dark);
  margin: 12px 0;
}

.targets-header p {
  color: var(--text);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .target-grid { grid-template-columns: 1fr; }
}

.tg-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: white;
}

.tg-card:hover { text-decoration: none; }

.tg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

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

.tg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,10,0,0.90) 0%,
    rgba(20,10,0,0.50) 50%,
    rgba(20,10,0,0.15) 100%
  );
  transition: background 0.3s;
}

.tg-card:hover .tg-overlay {
  background: linear-gradient(
    to top,
    rgba(255,106,0,0.90) 0%,
    rgba(200,60,0,0.60) 50%,
    rgba(20,10,0,0.20) 100%
  );
}

.tg-content {
  position: relative;
  z-index: 2;
  padding: 24px 32px 36px;
  width: 100%;
}

.tg-label {
  position: relative;
  z-index: 3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 32px;
  margin-bottom: 8px;
}

.tg-content h3 {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  color: white;
}

.tg-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
  margin-bottom: 20px;
}

.tg-cta {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
}

.tg-card:hover .tg-cta {
  background: white;
  color: var(--orange);
}

/* How Section */
.how-section {
  padding: 100px 5%;
  background: white;
}

.how-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.how-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--text-dark);
  margin: 12px 0 56px;
  line-height: 1.2;
}

.how-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.how-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hs-num {
  width: 64px;
  height: 64px;
  background: var(--orange);
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(255,106,0,0.3);
}

.hs-text h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.hs-text p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.how-arrow {
  font-size: 2rem;
  color: var(--orange);
  font-weight: 900;
  padding: 0 8px;
  margin-top: -36px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .how-arrow { display: none; }
  .how-step { max-width: 100%; }
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-mid) 100%);
  padding: 100px 5%;
  text-align: center;
}

.fc-inner { max-width: 700px; margin: 0 auto; }

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.final-cta p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.fc-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large { padding: 18px 44px; font-size: 1.05rem; }

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; text-decoration: none; color: white; }

/* Responsive stats */
@media (max-width: 700px) {
  .stats-bar { gap: 0; }
  .stat-item { padding: 12px 20px; }
  .stat-divider { display: none; }
}

/* Arrow bullets overrides */
.wc-icon { font-size: 1.5rem; flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.wc-icon--bad { color: #bbb; font-weight: 900; font-size: 1.4rem; }
