/* ====================================================================
   LANDING PAGE — page-specific styles
   Builds directly on the original hero/feature-row/faq-section rules,
   adding how-it-works, preview showcase, trust, and refined hierarchy.
   ==================================================================== */

.btn-lg { min-height: 50px; padding: 0 28px; font-size: 0.98rem; }

/* ---------------------------------------------------------------- */
/* Hero                                                               */
/* ---------------------------------------------------------------- */

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 65% 24%, rgba(126, 161, 255, 0.22), transparent 22%),
    var(--bg-tint);
  border-radius: var(--r-xl);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1fr);
  margin: 18px 26px 0;
  min-height: 430px;
  overflow: hidden;
  padding: 64px clamp(28px, 8vw, 120px);
}

.hero-copy { justify-self: end; max-width: 460px; }

.hero h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 4.6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.04;
  margin: 14px 0 0;
}

.hero-sub {
  color: #50586d;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  margin: 22px 0 26px;
}

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

.hero-proof {
  color: #7c8499;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 8px 18px;
  margin-top: 28px;
}

.hero-proof span::before {
  color: var(--success);
  content: "✓";
  font-weight: 900;
  margin-right: 6px;
}

.hero-art { height: 360px; position: relative; }

.hero-resume-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-soft);
  border-radius: 9px;
  box-shadow: 0 22px 48px rgba(53, 64, 105, 0.13);
  left: 88px;
  padding: 18px;
  position: absolute;
  top: 72px;
  width: 280px;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-resume-card::after {
  background: #8fb1ff;
  border: 8px solid #f7f9ff;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(80, 105, 176, 0.2);
  content: "";
  height: 118px;
  position: absolute;
  right: -112px;
  top: -42px;
  width: 118px;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.mini-header span { color: #d09b64; display: block; font-weight: 850; }
.mini-header small { color: #7c8499; font-size: 0.62rem; font-weight: 800; }

.mini-line, .mini-section, .mini-row {
  background: #dfe4f0;
  border-radius: 999px;
  height: 7px;
  margin-top: 8px;
}

.mini-line.wide { margin-top: 18px; width: 84%; }
.mini-line { width: 62%; }
.mini-section { background: var(--gold); height: 8px; margin-top: 18px; width: 40%; }
.mini-row { width: 92%; }
.mini-row.short { width: 70%; }

.score-card, .skill-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(53, 64, 105, 0.12);
  position: absolute;
  z-index: 2;
}

.score-card {
  align-items: center;
  display: flex;
  gap: 12px;
  left: 30px;
  padding: 10px 14px;
  top: 116px;
  animation: floatCard 6s ease-in-out infinite 0.4s;
}

.score-card strong {
  background: var(--success);
  border-radius: 5px;
  color: #fff;
  font-size: 1.1rem;
  padding: 8px 9px;
}

.score-card span, .skill-card span { color: var(--muted); font-size: 0.78rem; font-weight: 850; }

.skill-card {
  display: grid;
  gap: 12px;
  padding: 13px 15px;
  right: 58px;
  top: 192px;
  animation: floatCard 6s ease-in-out infinite 0.8s;
}

.skill-card button {
  background: var(--accent-soft);
  border: 0;
  border-radius: 7px;
  color: var(--accent-dark);
  font-weight: 850;
  padding: 10px 16px;
  cursor: default;
}

/* ---------------------------------------------------------------- */
/* How it works                                                       */
/* ---------------------------------------------------------------- */

.how-it-works { padding: 78px 18px 20px; text-align: center; }

.how-it-works h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 600;
  margin: 6px 0 44px;
}

.steps-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

.step-card {
  background: var(--panel);
  border: 1px solid var(--border-softer);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.step-num {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  margin-bottom: 16px;
  width: 34px;
}

.step-card h3 { color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 8px; }
.step-card p { color: var(--muted); font-size: 0.9rem; font-weight: 600; line-height: 1.5; margin: 0; }

/* ---------------------------------------------------------------- */
/* Preview showcase                                                    */
/* ---------------------------------------------------------------- */

.preview-showcase { padding: 70px 18px; }

.preview-showcase-grid {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
}

.preview-showcase-copy h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 600;
  line-height: 1.18;
  margin: 6px 0 16px;
}

.preview-showcase-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 18px;
}

.check-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 10px; }

.check-list li {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  color: var(--success);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.full-resume-mock {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 380px;
  padding: 30px 28px;
}

.frm-header { text-align: center; margin-bottom: 18px; }
.frm-name { background: var(--ink); border-radius: 999px; height: 11px; margin: 0 auto 10px; width: 58%; opacity: 0.78; }
.frm-contact { background: #d8dceb; border-radius: 999px; height: 6px; margin: 0 auto; width: 70%; }

.frm-section-title {
  background: var(--accent-dark);
  border-radius: 999px;
  height: 6px;
  margin: 18px 0 12px;
  opacity: 0.55;
  width: 32%;
}

.frm-row { align-items: center; display: flex; gap: 10px; justify-content: space-between; margin-bottom: 8px; }
.frm-line { background: #e3e7f3; border-radius: 999px; height: 7px; }
.frm-line.wide { width: 64%; }
.frm-date { background: var(--gold); border-radius: 999px; height: 6px; width: 18%; opacity: 0.8; }

.frm-bullet { background: #ebeef7; border-radius: 999px; height: 6px; margin: 7px 0 7px 14px; width: 78%; }
.frm-bullet.short { width: 52%; }

/* ---------------------------------------------------------------- */
/* Feature row (benefits)                                             */
/* ---------------------------------------------------------------- */

.feature-row { padding: 70px 18px 20px; }

.feature-row h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  font-weight: 600;
  margin: 6px 0 38px;
  max-width: 24ch;
}

.feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid article {
  background: linear-gradient(180deg, #f8faff, #f3f5fb);
  border: 1px solid var(--border-softer);
  border-radius: var(--r-md);
  min-height: 170px;
  padding: 26px 22px;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.feature-grid article:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.feature-icon {
  align-items: center;
  background: var(--accent-soft);
  border-radius: 9px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 1.15rem;
  font-weight: 850;
  height: 38px;
  width: 38px;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-grid h3 { color: var(--ink-soft); font-size: 1.02rem; margin: 0 0 7px; }
.feature-grid p { color: var(--muted-soft); font-size: 0.84rem; font-weight: 650; line-height: 1.5; margin: 0; }

/* ---------------------------------------------------------------- */
/* Trust section                                                       */
/* ---------------------------------------------------------------- */

.trust-section { background: var(--panel); padding: 64px 18px; margin-top: 50px; }

.trust-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item { text-align: center; padding: 0 12px; }

.trust-icon {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.trust-item h3 { color: var(--ink-soft); font-size: 1rem; margin: 0 0 8px; }
.trust-item p { color: var(--muted); font-size: 0.86rem; font-weight: 600; line-height: 1.55; margin: 0; }

/* ---------------------------------------------------------------- */
/* FAQ (kept close to original)                                       */
/* ---------------------------------------------------------------- */

.faq-section {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(220px, 0.7fr) minmax(360px, 1.3fr);
  margin: 30px auto 70px;
  max-width: 980px;
  padding: 34px 18px 0;
}

.faq-section h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 6px 0 0;
}

.faq-list { display: grid; gap: 10px; }

.faq-list article {
  background: var(--panel);
  border: 1px solid var(--border-softer);
  border-radius: var(--r-md);
  padding: 20px 22px;
  transition: border-color var(--t-fast) var(--ease);
}

.faq-list article:hover { border-color: var(--border-soft); }
.faq-list h3 { color: var(--ink-soft); font-size: 1rem; margin: 0 0 7px; }
.faq-list p { color: var(--muted); font-size: 0.9rem; font-weight: 650; line-height: 1.5; margin: 0; }

/* ---------------------------------------------------------------- */
/* Responsive                                                          */
/* ---------------------------------------------------------------- */

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; margin: 14px 14px 0; padding: 44px 24px; }
  .hero-copy { justify-self: start; max-width: none; }
  .hero-art { height: 300px; }
  .steps-grid { grid-template-columns: 1fr; }
  .preview-showcase-grid { grid-template-columns: 1fr; }
  .preview-showcase-art { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-section { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero h1 { font-size: 2.3rem; }
  .hero-art { transform: scale(0.82); transform-origin: top left; width: 122%; }
  .feature-grid { grid-template-columns: 1fr; }
  .btn-lg { min-height: 46px; padding: 0 22px; font-size: 0.92rem; }
}
