/* =========================
   GUIDANCE PAGE — PHASE 2
========================= */


/* =========================
   HERO
========================= */

.guidance-hero {
  padding: 170px 0 95px;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(59, 130, 246, 0.20),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #061426 0%,
      #0b2342 100%
    );

  color: #ffffff;
}


.guidance-hero-grid {
  display: grid;

  grid-template-columns:
    1.15fr 0.85fr;

  gap: 70px;

  align-items: center;
}


.guidance-hero h1 {
  max-width: 760px;

  margin-bottom: 22px;

  color: #ffffff;

  font-size: clamp(48px, 6vw, 72px);

  line-height: 1.05;

  letter-spacing: -2px;
}


.guidance-hero-description {
  max-width: 690px;

  margin-bottom: 32px;

  color: #b8c8da;

  font-size: 18px;

  line-height: 1.75;
}


/* =========================
   HERO PANEL
========================= */

.guidance-hero-panel {
  padding: 30px;

  background:
    rgba(255, 255, 255, 0.06);

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 16px;
}


.panel-label {
  margin-bottom: 22px;

  color: #6ea8ff;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.6px;
}


.hero-help-list {
  display: flex;

  flex-direction: column;
}


.hero-help-list > div {
  display: grid;

  grid-template-columns:
    34px 1fr;

  gap: 13px;

  padding: 16px 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.09);
}


.hero-help-list > div:last-child {
  border-bottom: 0;
}


.hero-help-list span {
  color: #6ea8ff;

  font-size: 12px;

  font-weight: 700;
}


.hero-help-list p {
  color: #e1e9f3;

  font-size: 14px;

  line-height: 1.5;
}


/* =========================
   SERVICES
========================= */

.guidance-services {
  padding: 95px 0 110px;
}


.guidance-service-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}


.guidance-service-card {
  min-height: 265px;

  padding: 28px;

  background: #ffffff;

  border:
    1px solid #e0e7ef;

  border-radius: 14px;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}


.guidance-service-card:hover {
  transform: translateY(-5px);

  border-color: #bdd5fa;

  box-shadow:
    0 16px 38px
    rgba(15, 35, 64, 0.08);
}


.service-number {
  margin-bottom: 24px;

  color: #3479e7;

  font-size: 13px;

  font-weight: 700;
}


.guidance-service-card h3 {
  margin-bottom: 12px;

  color: #102440;

  font-size: 21px;
}


.guidance-service-card p {
  color: #68768a;

  font-size: 15px;

  line-height: 1.7;
}


/* =========================
   PROCESS
========================= */

.guidance-process {
  padding: 95px 0;

  background: #07182e;

  color: #ffffff;
}


.process-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 45px;

  margin-top: 15px;
}


.process-step {
  padding-top: 22px;

  border-top:
    1px solid rgba(255, 255, 255, 0.12);
}


.process-number {
  display: block;

  margin-bottom: 20px;

  color: #6ea8ff;

  font-size: 13px;

  font-weight: 700;
}


.process-step h3 {
  margin-bottom: 11px;

  color: #ffffff;

  font-size: 20px;
}


.process-step p {
  color: #a5b7cb;

  font-size: 15px;

  line-height: 1.7;
}


/* =========================
   FORM SECTION
========================= */

.guidance-form-section {
  padding: 105px 0;

  background: #f4f7fb;
}


.guidance-form-layout {
  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 70px;

  align-items: start;
}


/* =========================
   FORM INTRO
========================= */

.guidance-form-intro {
  position: sticky;

  top: 120px;
}


.guidance-form-intro h2 {
  margin-bottom: 18px;

  color: #102440;

  font-size: 46px;

  line-height: 1.12;

  letter-spacing: -1.2px;
}


.guidance-form-intro > p {
  color: #68768a;

  font-size: 16px;

  line-height: 1.75;
}


/* =========================
   INFO NOTES
========================= */

.form-note {
  margin-top: 28px;

  padding: 22px;

  background: #eaf2ff;

  border-left:
    3px solid #3479e7;

  border-radius: 8px;
}


.form-note strong {
  display: block;

  margin-bottom: 6px;

  color: #18375f;
}


.form-note p {
  color: #59708c;

  font-size: 13px;

  line-height: 1.65;
}


.privacy-note {
  background: #f6f8fb;

  border-left-color: #91a1b5;
}


.privacy-note strong {
  color: #31445d;
}


.privacy-note p {
  color: #68778a;
}


/* =========================
   FORM CARD
========================= */

.guidance-form-card {
  padding: 36px;

  background: #ffffff;

  border:
    1px solid #dfe6ee;

  border-radius: 16px;

  box-shadow:
    0 14px 38px
    rgba(15, 35, 64, 0.05);
}


/* =========================
   FORM LAYOUT
========================= */

.form-row {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 18px;
}


.form-group {
  display: flex;

  flex-direction: column;

  gap: 8px;

  margin-bottom: 20px;
}


.form-group label {
  color: #263b58;

  font-size: 13px;

  font-weight: 700;

  line-height: 1.4;
}


.optional-label {
  margin-left: 5px;

  color: #8b98aa;

  font-size: 11px;

  font-weight: 500;
}


/* =========================
   INPUTS
========================= */

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 14px 15px;

  background: #ffffff;

  border:
    1px solid #ccd7e5;

  border-radius: 9px;

  color: #172a44;

  font-family:
    "Inter",
    sans-serif;

  font-size: 14px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}


.form-group input,
.form-group select {
  min-height: 50px;
}


.form-group textarea {
  resize: vertical;

  min-height: 165px;

  line-height: 1.6;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa7b8;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;

  border-color: #6ea8ff;

  box-shadow:
    0 0 0 3px
    rgba(59, 130, 246, 0.12);
}


/* =========================
   CONSENT
========================= */

.guidance-consent {
  display: grid;

  grid-template-columns:
    18px 1fr;

  gap: 11px;

  align-items: start;

  margin:
    5px 0 24px;

  padding: 16px;

  background: #f7f9fc;

  border:
    1px solid #e1e7ee;

  border-radius: 9px;
}


.guidance-consent input {
  width: 16px;

  height: 16px;

  margin-top: 2px;

  accent-color: #3479e7;

  cursor: pointer;
}


.guidance-consent label {
  color: #617087;

  font-size: 12.5px;

  line-height: 1.6;

  cursor: pointer;
}


/* =========================
   SUBMIT BUTTON
========================= */

.guidance-submit {
  width: 100%;

  min-height: 54px;

  border: 0;

  border-radius: 9px;

  background: #3479e7;

  color: #ffffff;

  font-family:
    "Inter",
    sans-serif;

  font-size: 15px;

  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}


.guidance-submit:hover {
  background: #2967c5;

  transform: translateY(-1px);
}


.guidance-submit:disabled {
  opacity: 0.65;

  cursor: not-allowed;

  transform: none;
}


/* =========================
   FORM STATUS
========================= */

.form-status {
  margin-top: 16px;

  font-size: 13px;

  line-height: 1.6;
}


.form-success {
  color: #2f7a57;
}


.form-error {
  color: #b54444;
}


/* =========================
   FORM ACCESSIBILITY
========================= */

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #d3a3a3;
}


.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: #b8d7c6;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

  .guidance-hero-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .guidance-hero-panel {
    max-width: 650px;
  }


  .guidance-service-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .guidance-form-layout {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .guidance-form-intro {
    position: static;

    max-width: 760px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .guidance-hero {
    padding:
      140px 0 70px;
  }


  .guidance-hero h1 {
    font-size: 44px;
  }


  .guidance-hero-description {
    font-size: 16px;
  }


  .guidance-hero-panel {
    padding: 24px;
  }


  .guidance-service-grid {
    grid-template-columns: 1fr;
  }


  .process-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .guidance-form-section {
    padding:
      80px 0;
  }


  .guidance-form-intro h2 {
    font-size: 37px;
  }


  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }


  .guidance-form-card {
    padding: 25px;
  }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

  .guidance-hero h1 {
    font-size: 39px;
  }


  .guidance-hero-panel {
    padding: 20px;
  }


  .hero-help-list > div {
    grid-template-columns:
      28px 1fr;
  }


  .guidance-form-intro h2 {
    font-size: 34px;
  }


  .guidance-form-card {
    padding: 21px;
  }


  .form-note {
    padding: 18px;
  }


  .guidance-consent {
    padding: 14px;
  }

}