/* =====================================================
   GLOBAL
===================================================== */
:root {
  --primary: #2563eb;        /* Blue */
  --primary-dark: #1e40af;
  --accent: #22c55e;         /* Green */
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --danger: #dc2626;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg-light);
}

/* =====================================================
   HERO SECTION
===================================================== */
.partner-hero {
  padding: 64px 0;
  background: linear-gradient(135deg, #eef2ff, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* TEXT */
.hero-text h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero-text .highlight {
  color: var(--primary);
}

.hero-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* CONTACT POINTS */
.keypoints {
  list-style: none;
  padding: 0;
  margin: 0;
}

.keypoints li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.keypoints a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.keypoints a:hover {
  text-decoration: underline;
}

/* ICONS */
.icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0e7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  /* color: var(--primary); */
  color: var(--logo-dark-yellow);
}

.icon.phone::before {
  content: "\f095";
}

.icon.email::before {
  content: "\f0e0";
}

.icon.linkedin::before {
  content: "\f08c";
  font-family: "Font Awesome 6 Brands";
}

/* =====================================================
   FORM CARD
===================================================== */
.hero-form {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.hero-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-form .muted {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* =====================================================
   FORM FIELDS
===================================================== */
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

input,
textarea {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  outline: none;
  transition: all 0.2s ease;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ERRORS */
.error {
  color: var(--danger);
  font-size: 12px;
  margin-top: 4px;
}

/* =====================================================
   CHECKBOXES
===================================================== */
.checkbox {
  margin-top: 6px;
}

.checkline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.checkline input {
  margin-top: 2px;
}

.checkline a {
  color: var(--primary);
  text-decoration: none;
}

.checkline a:hover {
  text-decoration: underline;
}

/* =====================================================
   ACTIONS
===================================================== */
.actions {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--logo-dark-yellow);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--primary-dark);
}

/* =====================================================
   WHY INVEST
===================================================== */
.why-partner {
  padding: 60px 0;
  background: #ffffff;
}

.why-partner h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
}

.why-partner .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-partner .card {
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f1f5ff, #ffffff);
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* =====================================================
   CTA BAND
===================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--logo-dark-yellow), var(--logo-dark-yellow));
  padding: 40px 0;
  text-align: center;
  color: #ffffff;
}

.cta-band h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.btn--ghost-white {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn--ghost-white:hover {
  background: #ffffff;
  color: var(--logo-dark-yellow);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .partner-hero {
    padding: 48px 0;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  form {
    grid-template-columns: 1fr;
  }

  .why-partner .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .why-partner .grid {
    grid-template-columns: 1fr;
  }

  .hero-form {
    padding: 24px;
  }
}
