@import url("styles.css");

/* ===== AGENCY HERO ===== */
.agency-hero {
  padding-top: 110px;
  padding-bottom: 0px;
  text-align: center;
}

.agency-hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 800;
  /* letter-spacing: -1px; */
}

.agency-hero h1 span {
  color: #38bdf8;
}

.agency-hero p {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 22px;
  color: #94a3b8;
}

/* ===== SECTIONS ===== */
.agency-section {
  margin-top: 180px;
}

.agency-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  color: #94a3b8;
  max-width: 700px;
  /* margin-bottom: 40px; */
  margin: 0 auto 40px;
  text-align: center;
  font-size: 20px;
}

/* ===== VALUE LIST ===== */
.value-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.value-list li {
  font-size: 18px;
  margin-bottom: 10px;
  color: #cbd5f5;
}

.section-note {
  margin-top: 10px;
  font-size: 18px;
  color: #94a3b8;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.process-card {
  background: linear-gradient(180deg, #020617, #020617cc);
  border: 1px solid #303843;
  border-radius: 18px;
  padding: 24px;
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-card p {
  color: #94a3b8;
  font-size: 17px;
}

/* .how-we-help-heading,
.agency-open-source-apps {
  text-align: center;
} */

/* ===== OPEN SOURCE PLACEHOLDER ===== */
.placeholder {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  border: 2px dashed #303843;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #64748b;
}
.card-content {
  text-align: center;
}

/* Beautiful "Why App Cloning Works" Section */
.why-cloning-works h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 36px;
  text-align: center;
  color: #38bdf8;
  letter-spacing: -1px;
}

.cloning-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

.cloning-card {
  background: linear-gradient(180deg, #0f172a 80%, #1e293b 100%);
  border: 1px solid #303843;
  border-radius: 18px;
  padding: 32px 20px 24px 20px;
  text-align: center;
  box-shadow: 0 6px 32px rgba(56, 189, 248, 0.08);
  transition: transform 0.18s, box-shadow 0.18s;
}

.cloning-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.15);
}

.cloning-icon {
  font-size: 38px;
  margin-bottom: 16px;
}

.cloning-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #38bdf8;
}

.cloning-card p {
  font-size: 17px;
  color: #cbd5f5;
}

.why-cloning-works .section-note {
  margin-top: 18px;
  font-size: 18px;
  color: #94a3b8;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT ===== */
.contact-section {
  margin-top: 180px;
  margin-bottom: 100px;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
}
.contact-section p {
  text-align: center;
}

.form-wrapper {
  max-width: 700px;
  margin-top: 30px;
  background: linear-gradient(180deg, #020617, #020617cc);
  border: 1px solid #303843;
  border-radius: 20px;
  padding: 32px;
}

@media (max-width: 640px) {
  .agency-hero {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .agency-hero p {
    font-size: 20px;
  }

  .agency-section {
    margin-top: 100px;
  }

  .contact-section {
    margin-top: 120px;
    margin-bottom: 80px;
  }
}
