/* ========== HERO ========== */
.f-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: #0F1115;
  position: relative;
  overflow: hidden;
}
.f-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(111,119,141,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(111,119,141,0.04) 0%, transparent 40%);
}

.f-badge {
  display: inline-block;
  font-size: 12px; font-weight: 400;
  color: #6F778D;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 6px 16px; border-radius: 4px;
  margin-bottom: 24px; letter-spacing: 1px;
  text-transform: uppercase;
}

.f-hero-title {
  font-size: 44px; font-weight: 300; color: #fff;
  line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 20px; max-width: 800px;
}

.f-hero-sub {
  font-size: 16px; color: #A6A9B6; line-height: 1.75;
  margin-bottom: 32px; max-width: 600px;
}

.f-hero-actions {
  display: flex; gap: 14px; margin-bottom: 48px;
  flex-wrap: wrap;
}

/* TERMINAL */
.f-terminal {
  max-width: 640px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; overflow: hidden;
}
.f-terminal-bar {
  background: rgba(255,255,255,0.03);
  padding: 10px 16px; display: flex; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.f-terminal-bar span {
  width: 10px; height: 10px; border-radius: 50%;
}
.f-terminal-bar span:nth-child(1) { background: #d4756b; }
.f-terminal-bar span:nth-child(2) { background: #d4a76b; }
.f-terminal-bar span:nth-child(3) { background: #6bd475; }
.f-terminal-body {
  padding: 20px 22px;
  font-size: 13px; font-weight: 400;
  line-height: 1.9; color: #A6A9B6;
}
.f-line { margin-bottom: 4px; }
.f-user { color: #6F778D; font-weight: 500; margin-right: 6px; }
.f-agent { color: #6bd475; font-weight: 500; margin-right: 6px; }
.f-path { color: #fff; font-weight: 500; }

/* ========== HOW ========== */
.f-how {
  background: #4A5167; padding: 80px 0;
}

.f-steps {
  display: flex; align-items: flex-start; gap: 20px;
}

.f-step {
  flex: 1; min-width: 220px;
  background: rgba(15,17,21,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; padding: 28px 24px;
}

.f-step-num {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400; color: #fff;
  background: rgba(111,119,141,0.15);
  border: 1px solid rgba(111,119,141,0.3);
  border-radius: 50%; margin-bottom: 16px;
}

.f-step h4 {
  font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 8px;
}
.f-step p {
  font-size: 13px; color: #A6A9B6; line-height: 1.6;
}

.f-step-arrow {
  font-size: 22px; color: #6F778D; padding-top: 48px; flex-shrink: 0;
}

/* ========== FEATURES ========== */
.f-features {
  padding: 80px 0; background: #0F1115;
}

.f-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.f-feature-card {
  background: #0F1115;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 26px 24px;
  transition: all .2s;
}
.f-feature-card:hover { border-color: #6F778D; }

.f-feature-icon {
  font-size: 28px; margin-bottom: 14px;
}

.f-feature-card h4 {
  font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 8px;
}
.f-feature-card p {
  font-size: 13px; color: #A6A9B6; line-height: 1.6;
}

/* ========== CASES ========== */
.f-cases {
  padding: 80px 0; background: #4A5167;
}
.f-cases .section-title { color: #fff; }

.f-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.f-case-card {
  background: rgba(15,17,21,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 26px 24px;
  transition: all .2s;
}
.f-case-card:hover { border-color: #6F778D; }
.f-case-card-wide { grid-column: 1 / -1; }

.f-case-card h4 {
  font-size: 18px; font-weight: 500; color: #fff; margin-bottom: 4px;
}
.f-case-sub {
  font-size: 13px; color: #6F778D; margin-bottom: 12px;
}
.f-case-card p {
  font-size: 13px; color: #A6A9B6; line-height: 1.6; margin-bottom: 12px;
}
.f-case-result {
  font-size: 13px; color: #fff;
  background: rgba(111,119,141,0.12);
  border-left: 2px solid #6F778D;
  padding: 8px 14px; border-radius: 0 4px 4px 0;
}

/* ========== PATHS ========== */
.f-paths {
  padding: 80px 0; background: #0F1115;
}

.f-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 760px;
}

.f-path-card {
  background: #0F1115;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 28px;
  display: flex; flex-direction: column;
}
.f-path-card-featured {
  border-color: #6F778D;
  border-width: 2px;
}

.f-path-badge {
  font-size: 14px; font-weight: 500; color: #A6A9B6;
  margin-bottom: 16px;
}
.f-path-badge-accent { color: #fff; }

.f-path-card ul {
  list-style: none; margin-bottom: 20px; flex: 1;
}
.f-path-card li {
  font-size: 13px; color: #A6A9B6; padding: 5px 0;
  position: relative; padding-left: 16px;
}
.f-path-card li::before {
  content: '/'; position: absolute; left: 0; color: #6F778D;
}

.f-path-card code {
  font-family: inherit; font-size: 13px;
  background: rgba(255,255,255,0.04); padding: 2px 6px;
  border-radius: 3px; color: #fff;
}

.f-path-note {
  font-size: 12px; color: #6F778D; margin-bottom: 16px;
}

/* ========== AUDIENCE ========== */
.f-audience {
  padding: 80px 0; background: #4A5167;
}

.f-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.f-audience-card {
  background: rgba(15,17,21,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; padding: 22px 24px;
}
.f-audience-card h4 {
  font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 6px;
}
.f-audience-card p {
  font-size: 13px; color: #A6A9B6; line-height: 1.5;
}

/* ========== ABOUT ========== */
.f-about {
  padding: 80px 0; background: #0F1115;
}

.f-about-row {
  display: flex; gap: 32px; align-items: flex-start;
}
.f-about-photo {
  flex-shrink: 0;
  width: 120px; height: 120px;
  border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(111,119,141,0.3);
}
.f-about-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.f-about-text-col { flex: 1; }
.f-about-text {
  font-size: 15px; color: #A6A9B6; line-height: 1.7;
  margin-bottom: 12px; max-width: 640px;
}

@media (max-width: 768px) {
  .f-about-row { flex-direction: column; align-items: center; text-align: center; }
  .f-about-text { max-width: 100%; }
}

/* ========== FAQ ========== */
.f-faq {
  padding: 80px 0; background: #4A5167;
}
.f-faq .section-title { color: #fff; }

.f-faq-list {
  max-width: 760px;
}

.f-faq-list .faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ========== CTA ========== */
.f-cta {
  padding: 100px 0; background: #0F1115;
  text-align: center;
}

.f-cta-sub {
  font-size: 16px; color: #A6A9B6;
  margin-bottom: 32px; max-width: 560px;
  margin-left: auto; margin-right: auto;
}

.f-cta-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.f-footer {
  background: #0F1115;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
  color: #A6A9B6;
}

.f-footer-grid {
  display: flex; justify-content: space-between;
  gap: 32px; margin-bottom: 32px;
}

.f-footer-brand p {
  font-size: 12px; color: #6F778D;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-top: 4px; margin-bottom: 12px;
}

.f-footer-main-link {
  font-size: 13px; color: #6F778D;
  border: 1px solid rgba(111,119,141,0.2);
  padding: 6px 14px; border-radius: 4px;
  display: inline-block; transition: all .2s;
}
.f-footer-main-link:hover { border-color: #6F778D; color: #fff; }

.f-footer-info { text-align: right; }
.f-footer-info p {
  font-size: 13px; margin-bottom: 3px;
}

.f-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px; text-align: center;
}
.f-footer .footer-bottom a { color: #A6A9B6; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .f-features-grid { grid-template-columns: 1fr 1fr; }
  .f-steps { flex-wrap: wrap; }
  .f-step-arrow { display: none; }
  .f-step { flex: 1 1 calc(50% - 10px); }
}

@media (max-width: 768px) {
  .f-hero-title { font-size: 30px; }
  .f-hero-actions { flex-direction: column; }
  .f-terminal-body { font-size: 12px; padding: 16px; }
  .f-features-grid { grid-template-columns: 1fr; }
  .f-cases-grid { grid-template-columns: 1fr; }
  .f-case-card-wide { grid-column: auto; }
  .f-paths-grid { grid-template-columns: 1fr; }
  .f-audience-grid { grid-template-columns: 1fr; }
  .f-footer-grid { flex-direction: column; text-align: center; }
  .f-footer-info { text-align: center; }
}
