/* ponytail: inline CSS dipindah ke file ini biar bisa dicache browser */
/* SOLUTIONS SINGLE TEMPLATE STYLING */
.hero-page {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8) !important;
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238,150,75,0.15);
  border: 1px solid rgba(238,150,75,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-eyebrow span {
  color: #EE964B;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.stats-bar {
  background: #EE964B;
  padding: 40px 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.1);
  padding: 0 16px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Headland One', serif;
  font-size: 38px;
  color: #000;
  font-weight: 700;
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: rgba(0,0,0,0.7);
  margin-top: 8px;
  line-height: 1.4;
}

/* Pain points */
.pain-section {
  padding: 100px 0;
  background: #fff;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pain-left h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.pain-left h2 em {
  color: #F95738;
  font-style: normal;
}

.pain-left p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}

.pain-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1.5px solid #ebebeb;
  border-radius: 8px;
  transition: border-color 0.2s;
}

.pain-card:hover {
  border-color: #F95738;
}

.pain-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.pain-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: #fafafa;
}

.process-section h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.process-step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
}

.step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(238, 150, 75, 0.45);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.process-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Deliverables Section */
.deliverables-section {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.deliverables-num {
  font-family: 'Headland One', serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deliverables-list li {
  font-size: 16px;
  color: #333;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}

.deliverables-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
  font-size: 18px;
}

.deliverables-list li:last-child {
  border-bottom: none;
}

/* Services Grid Section */
.services-section {
  padding: 100px 0;
  background: #fafafa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: #EE964B;
  box-shadow: 0 8px 32px rgba(238, 150, 75, 0.08);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #111;
}

.service-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-link {
  font-size: 13px;
  font-weight: 700;
  color: #EE964B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: #000;
}

.gallery-section h2 {
  color: #fff;
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.gallery-section p {
  color: rgba(255,255,255,0.5);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* CTA */
.cta-section {
  background: #EE964B;
  padding: 80px 0;
  text-align: center;
  color: #000;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  font-weight: 700;
}

.cta-section p {
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta-actions .btn {
  font-weight: 600;
  padding: 14px 32px;
}


.btn-whatsapp {
  border: 1.5px solid #000;
  text-decoration: none;
  color: #000;
  border-radius: 4px;
  padding: 14px 32px;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}
.btn-whatsapp:hover {
  border-color: #fff;
  color: #fff;
}
@media (max-width: 991px) {

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-item {
    border-right: none;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(0,0,0,0.1);
  }
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .hero-page {
    min-height: 420px !important;
  }
  .hero-body {
    padding: 60px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar-inner {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none !important;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}