/* ==========================================================
   FitHarvest — Theme CSS
   Full design system ported from concept v2
   ========================================================== */

/* ── TYPOGRAPHY ── */
.fh-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fh-accent);
  margin-bottom: 14px;
}

.fh-section-title {
  font-family: var(--fh-font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--fh-text);
}

.fh-section-sub {
  font-size: 16px;
  color: var(--fh-muted);
  max-width: 500px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── BUTTONS ── */
.fh-btn-primary {
  background: var(--fh-accent);
  color: #fff;
  font-family: var(--fh-font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: var(--fh-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.fh-btn-primary:hover {
  background: var(--fh-accent2);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 107, 0, 0.3);
  color: #fff;
}

.fh-btn-primary svg {
  transition: transform 0.2s;
}

.fh-btn-primary:hover svg {
  transform: translateX(3px);
}

.fh-btn-ghost {
  color: var(--fh-text);
  font-family: var(--fh-font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--fh-radius);
  text-decoration: none;
  border: 1px solid var(--fh-border);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fh-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fh-text);
}

/* ── LAYOUT ── */
.fh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.fh-section {
  padding: 120px 60px;
}

/* =============================================
   NAV
   ============================================= */
.fh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.fh-nav {
  display: flex;
  flex-direction: column;
}

.fh-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 1px solid var(--fh-border);
  position: relative;
  z-index: 2;
}

/* Logo */
.fh-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.fh-logo .custom-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.fh-logo-text {
  font-family: var(--fh-font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--fh-text);
  letter-spacing: -0.3px;
}

.fh-logo-text span,
.fh-logo-text em {
  color: var(--fh-accent);
  font-style: normal;
}

/* Nav links */
.fh-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.fh-nav-link {
  color: var(--fh-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color var(--fh-transition);
  position: relative;
}

.fh-nav-link:hover,
.fh-nav-links .current-menu-item > .fh-nav-link,
.fh-nav-links .current_page_item > .fh-nav-link {
  color: var(--fh-text);
}

.fh-dropdown-arrow {
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.2s;
}

.has-dropdown:hover .fh-dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.fh-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--fh-surface2);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  min-width: 200px;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.has-dropdown {
  position: relative;
}

.has-dropdown:hover .fh-submenu,
.has-dropdown:focus-within .fh-submenu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}

.fh-subnav-link {
  display: block;
  padding: 10px 18px;
  color: var(--fh-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--fh-transition), background var(--fh-transition);
}

.fh-subnav-link:hover {
  color: var(--fh-text);
  background: rgba(255, 107, 0, 0.06);
}

/* Nav CTA */
.fh-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fh-nav-cta {
  background: var(--fh-accent);
  color: #fff;
  font-family: var(--fh-font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: var(--fh-radius);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  white-space: nowrap;
}

.fh-nav-cta:hover {
  background: var(--fh-accent2);
  transform: translateY(-1px);
  color: #fff;
}

/* Hamburger */
.fh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
}

.fh-hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fh-text);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.fh-hamburger.is-active .fh-hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fh-hamburger.is-active .fh-hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.fh-hamburger.is-active .fh-hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.fh-mobile-menu {
  display: none;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--fh-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.fh-mobile-menu.is-open {
  max-height: 600px;
}

.fh-mobile-menu-inner {
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fh-mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.fh-mobile-nav-list li a {
  display: block;
  padding: 14px 0;
  color: var(--fh-muted);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--fh-border);
  transition: color var(--fh-transition);
}

.fh-mobile-nav-list li a:hover {
  color: var(--fh-text);
}

.fh-mobile-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* =============================================
   HERO
   ============================================= */
.fh-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 130px 60px 80px;
  position: relative;
  overflow: hidden;
}

/* Decorative grid background */
.fh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Orange glow */
.fh-hero::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.07) 0%, transparent 65%);
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.fh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fh-accent-dim);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 11px;
  color: var(--fh-accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.fh-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--fh-accent);
  border-radius: 50%;
  animation: fh-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes fh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

.fh-hero-title {
  font-family: var(--fh-font-display);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin-bottom: 28px;
  color: var(--fh-text);
}

.fh-hero-title em {
  font-style: normal;
  color: var(--fh-accent);
}

.fh-hero-title .fh-outline {
  -webkit-text-stroke: 1.5px var(--fh-accent);
  color: transparent;
}

.fh-hero-sub {
  font-size: 17px;
  color: var(--fh-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 300;
}

.fh-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero visual */
.fh-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dashboard mockup card */
.fh-dashboard-card {
  background: var(--fh-surface);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: var(--fh-radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 450px;
  box-shadow: var(--fh-shadow), 0 0 0 1px rgba(255, 107, 0, 0.08);
  animation: fh-float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes fh-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.fh-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.fh-dash-title {
  font-family: var(--fh-font-display);
  font-weight: 700;
  font-size: 15px;
}

.fh-dash-ai-badge {
  background: var(--fh-accent-dim);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--fh-accent);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fh-dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.fh-metric {
  background: var(--fh-bg2);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  border: 1px solid var(--fh-border);
}

.fh-metric-val {
  font-family: var(--fh-font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--fh-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.fh-metric-label {
  font-size: 10px;
  color: var(--fh-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.fh-progress-section-title {
  font-size: 11px;
  color: var(--fh-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fh-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.fh-progress-name {
  font-size: 12px;
  font-weight: 500;
  width: 100px;
  flex-shrink: 0;
  color: var(--fh-text);
}

.fh-progress-bar-bg {
  flex: 1;
  height: 5px;
  background: var(--fh-bg2);
  border-radius: 100px;
  overflow: hidden;
}

.fh-progress-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--fh-accent2), var(--fh-accent));
}

.fh-progress-pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--fh-accent);
  width: 30px;
  text-align: right;
}

.fh-dash-next {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.09) 0%, rgba(255, 107, 0, 0.04) 100%);
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fh-dash-next-icon {
  width: 38px;
  height: 38px;
  background: var(--fh-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.fh-dash-next-label {
  font-size: 10px;
  color: var(--fh-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.fh-dash-next-name {
  font-family: var(--fh-font-display);
  font-size: 14px;
  font-weight: 700;
}

/* Floating mini-cards */
.fh-float-card {
  position: absolute;
  background: var(--fh-surface2);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.fh-float-card-1 {
  top: 10px;
  left: -55px;
  animation: fh-float2 5s ease-in-out infinite 1s;
}

.fh-float-card-2 {
  bottom: 30px;
  right: -45px;
  animation: fh-float2 7s ease-in-out infinite 2s;
}

@keyframes fh-float2 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.fh-float-card-label {
  color: var(--fh-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}

.fh-float-card-val {
  font-family: var(--fh-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fh-text);
}

.fh-float-card-val span {
  color: var(--fh-accent);
}

/* =============================================
   STATS STRIP
   ============================================= */
.fh-stats-strip {
  border-top: 1px solid var(--fh-border);
  border-bottom: 1px solid var(--fh-border);
  padding: 36px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  background: var(--fh-bg2);
}

.fh-stat-item {
  text-align: center;
}

.fh-stat-num {
  font-family: var(--fh-font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--fh-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.fh-stat-desc {
  font-size: 13px;
  color: var(--fh-muted);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.fh-how {
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.fh-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  gap: 0;
  border: 1px solid var(--fh-border);
  border-radius: 12px;
  overflow: hidden;
}

.fh-step {
  padding: 48px 40px;
  background: var(--fh-surface);
  position: relative;
  transition: background 0.3s;
  border-right: 1px solid var(--fh-border);
}

.fh-step:last-child {
  border-right: none;
}

.fh-step:hover {
  background: var(--fh-surface2);
}

.fh-step-num {
  font-family: var(--fh-font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(255, 107, 0, 0.1);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -3px;
  transition: color 0.3s;
}

.fh-step:hover .fh-step-num {
  color: rgba(255, 107, 0, 0.18);
}

.fh-step-icon {
  width: 48px;
  height: 48px;
  background: var(--fh-accent-dim);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.fh-step-title {
  font-family: var(--fh-font-display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  color: var(--fh-text);
}

.fh-step-text {
  font-size: 14px;
  color: var(--fh-muted);
  line-height: 1.7;
}

/* =============================================
   FEATURES
   ============================================= */
.fh-features {
  padding: 0 60px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.fh-features-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

.fh-feature-main {
  background: var(--fh-surface);
  border: 1px solid rgba(255, 107, 0, 0.12);
  border-radius: var(--fh-radius-lg);
  padding: 52px;
  position: relative;
  overflow: hidden;
}

.fh-feature-main::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.fh-features-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fh-feature-card {
  flex: 1;
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius-lg);
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
}

.fh-feature-card:hover {
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateX(-4px);
}

.fh-feature-tag {
  display: inline-block;
  background: var(--fh-accent-dim);
  border: 1px solid rgba(255, 107, 0, 0.22);
  color: var(--fh-accent);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.fh-feature-h {
  font-family: var(--fh-font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  line-height: 1.25;
  color: var(--fh-text);
}

.fh-feature-p {
  font-size: 14px;
  color: var(--fh-muted);
  line-height: 1.7;
}

.fh-big-metric {
  margin: 36px 0 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.fh-big-num {
  font-family: var(--fh-font-display);
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -4px;
  color: var(--fh-accent);
  line-height: 1;
}

.fh-big-unit {
  font-family: var(--fh-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fh-accent2);
  margin-bottom: 10px;
}

.fh-big-desc {
  font-size: 13px;
  color: var(--fh-muted);
  margin-bottom: 10px;
  max-width: 160px;
  line-height: 1.5;
}

/* =============================================
   PROGRAMS
   ============================================= */
.fh-programs {
  padding: 0 60px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.fh-programs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}

.fh-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fh-program-card {
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.fh-program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 107, 0, 0.2);
}

.fh-program-thumb {
  height: 190px;
  position: relative;
  overflow: hidden;
}

.fh-program-thumb-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.fh-program-thumb-bg.p1 { background: linear-gradient(135deg, #1a0d00 0%, #120900 100%); }
.fh-program-thumb-bg.p2 { background: linear-gradient(135deg, #150d00 0%, #0e0800 100%); }
.fh-program-thumb-bg.p3 { background: linear-gradient(135deg, #101010 0%, #080808 100%); }

.fh-program-level {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--fh-silver);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.fh-program-body {
  padding: 22px;
}

.fh-program-category {
  font-size: 10px;
  color: var(--fh-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 6px;
}

.fh-program-name {
  font-family: var(--fh-font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  color: var(--fh-text);
}

.fh-program-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.fh-program-meta-item {
  font-size: 12px;
  color: var(--fh-muted);
}

.fh-program-meta-item strong {
  color: var(--fh-text);
  font-weight: 500;
}

/* =============================================
   PRICING
   ============================================= */
.fh-pricing {
  padding: 0 60px 120px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.fh-pricing .fh-section-title {
  margin: 0 auto 14px;
}

.fh-pricing .fh-section-sub {
  margin: 0 auto 60px;
}

.fh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.fh-price-card {
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius-lg);
  padding: 38px;
  position: relative;
  transition: border-color 0.3s;
}

.fh-price-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
}

.fh-price-card.fh-featured {
  background: linear-gradient(135deg, #1a0c00 0%, #100800 100%);
  border-color: rgba(255, 107, 0, 0.4);
}

.fh-price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fh-accent);
  color: #fff;
  font-family: var(--fh-font-display);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 16px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.fh-price-tier {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fh-muted);
  margin-bottom: 14px;
  font-weight: 600;
}

.fh-price-tier.fh-featured-tier {
  color: var(--fh-accent);
}

.fh-price-val {
  font-family: var(--fh-font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--fh-text);
}

.fh-price-period {
  font-size: 13px;
  color: var(--fh-muted);
  margin-bottom: 26px;
}

.fh-price-features {
  list-style: none;
  margin-bottom: 32px;
}

.fh-price-features li {
  padding: 9px 0;
  font-size: 14px;
  color: var(--fh-muted);
  border-bottom: 1px solid var(--fh-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.fh-price-features li:last-child {
  border-bottom: none;
}

.fh-price-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
  background: var(--fh-accent-dim);
  border: 1px solid rgba(255, 107, 0, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23ff6b00' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.fh-price-features li.fh-active {
  color: var(--fh-text);
}

.fh-btn-price {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--fh-radius);
  font-family: var(--fh-font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--fh-border);
  color: var(--fh-text);
  transition: all 0.2s;
}

.fh-btn-price:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fh-text);
}

.fh-btn-price.fh-featured-btn {
  background: var(--fh-accent);
  color: #fff;
  border-color: transparent;
}

.fh-btn-price.fh-featured-btn:hover {
  background: var(--fh-accent2);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
  color: #fff;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.fh-testimonials {
  padding: 0 60px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.fh-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.fh-testi-card {
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: 14px;
  padding: 30px;
  position: relative;
  transition: border-color 0.3s;
}

.fh-testi-card:hover {
  border-color: rgba(255, 107, 0, 0.15);
}

.fh-testi-quote {
  font-size: 36px;
  line-height: 1;
  color: var(--fh-accent);
  font-family: Georgia, serif;
  margin-bottom: 14px;
  opacity: 0.5;
}

.fh-testi-text {
  font-size: 14px;
  color: var(--fh-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.fh-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fh-testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fh-accent), var(--fh-accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh-font-display);
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
  overflow: hidden;
}

.fh-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-testi-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--fh-text);
}

.fh-testi-role {
  font-size: 11px;
  color: var(--fh-muted);
}

.fh-testi-result {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--fh-accent-dim);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 6px;
  padding: 8px 12px;
  text-align: right;
}

.fh-testi-result-val {
  font-family: var(--fh-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fh-accent);
  line-height: 1;
}

.fh-testi-result-label {
  font-size: 10px;
  color: var(--fh-muted);
  margin-top: 2px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.fh-cta-banner {
  margin: 0 60px 120px;
  background: linear-gradient(135deg, #1a0c00 0%, #0f0700 100%);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 20px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.fh-cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.07) 0%, transparent 65%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.fh-cta-title {
  font-family: var(--fh-font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--fh-text);
}

.fh-cta-title em {
  font-style: normal;
  color: var(--fh-accent);
}

.fh-cta-sub {
  font-size: 16px;
  color: var(--fh-muted);
  line-height: 1.65;
  font-weight: 300;
}

.fh-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.fh-cta-note {
  font-size: 12px;
  color: var(--fh-muted);
}

/* =============================================
   FOOTER
   ============================================= */
.fh-footer {
  border-top: 1px solid var(--fh-border);
  background: var(--fh-bg2);
}

.fh-footer-inner {
  padding: 60px 60px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.fh-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 44px;
}

.fh-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh-font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--fh-text);
  text-decoration: none;
  margin-bottom: 16px;
}

.fh-footer-logo .custom-logo {
  height: 36px;
  width: auto;
}

.fh-footer-logo em {
  color: var(--fh-accent);
  font-style: normal;
}

.fh-footer-desc {
  font-size: 13px;
  color: var(--fh-muted);
  line-height: 1.7;
  max-width: 240px;
}

.fh-footer-col-title {
  font-family: var(--fh-font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fh-silver);
  margin-bottom: 18px;
}

.fh-footer-links {
  list-style: none;
}

.fh-footer-links li {
  margin-bottom: 10px;
}

.fh-footer-links a {
  color: var(--fh-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--fh-transition);
}

.fh-footer-links a:hover {
  color: var(--fh-text);
}

.fh-footer-bottom {
  border-top: 1px solid var(--fh-border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.fh-footer-copy {
  font-size: 12px;
  color: var(--fh-muted);
}

.fh-footer-legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.fh-footer-legal a {
  font-size: 12px;
  color: var(--fh-muted);
  text-decoration: none;
  transition: color var(--fh-transition);
}

.fh-footer-legal a:hover {
  color: var(--fh-text);
}

/* =============================================
   BLOG / ARCHIVE
   ============================================= */
.fh-blog-wrap {
  padding: 120px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.fh-blog-header {
  margin-bottom: 60px;
}

.fh-blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.fh-posts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fh-post-card {
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.fh-post-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
  transform: translateY(-2px);
}

.fh-post-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.fh-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.fh-post-card:hover .fh-post-thumb img {
  transform: scale(1.04);
}

.fh-post-body {
  padding: 28px;
}

.fh-post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.fh-post-category a {
  font-size: 10px;
  color: var(--fh-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.fh-post-date {
  font-size: 12px;
  color: var(--fh-muted);
}

.fh-post-title {
  font-family: var(--fh-font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
  line-height: 1.25;
}

.fh-post-title a {
  color: var(--fh-text);
  text-decoration: none;
  transition: color var(--fh-transition);
}

.fh-post-title a:hover {
  color: var(--fh-accent);
}

.fh-post-excerpt {
  font-size: 14px;
  color: var(--fh-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.fh-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fh-read-more {
  font-family: var(--fh-font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--fh-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.fh-read-more:hover {
  gap: 10px;
  color: var(--fh-accent2);
}

.fh-read-more-time {
  font-size: 12px;
  color: var(--fh-muted);
}

/* =============================================
   SINGLE POST
   ============================================= */
.fh-single-wrap {
  padding: 120px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.fh-single-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.fh-single-header {
  margin-bottom: 40px;
}

.fh-single-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.fh-single-title {
  font-family: var(--fh-font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--fh-text);
}

.fh-single-featured {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--fh-radius-lg);
  margin-bottom: 48px;
}

.fh-single-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--fh-muted);
}

.fh-single-content h2,
.fh-single-content h3,
.fh-single-content h4 {
  color: var(--fh-text);
  margin-top: 48px;
  margin-bottom: 20px;
}

.fh-single-content p {
  margin-bottom: 24px;
}

.fh-single-content ul,
.fh-single-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.fh-single-content ul li,
.fh-single-content ol li {
  margin-bottom: 8px;
  color: var(--fh-muted);
}

.fh-single-content blockquote {
  border-left: 3px solid var(--fh-accent);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--fh-accent-dim);
  border-radius: 0 var(--fh-radius) var(--fh-radius) 0;
  font-style: italic;
  color: var(--fh-text);
}

.fh-single-content a {
  color: var(--fh-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fh-single-content img {
  border-radius: var(--fh-radius-lg);
  margin: 32px 0;
}

/* =============================================
   SIDEBAR
   ============================================= */
.fh-sidebar {
  position: sticky;
  top: 100px;
}

.widget {
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.widget-title {
  font-family: var(--fh-font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fh-silver);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--fh-border);
}

.widget ul {
  list-style: none;
}

.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--fh-border);
  font-size: 14px;
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  color: var(--fh-muted);
  text-decoration: none;
  transition: color var(--fh-transition);
}

.widget ul li a:hover {
  color: var(--fh-text);
}

/* =============================================
   PAGINATION
   ============================================= */
.fh-pagination {
  margin-top: 60px;
}

.fh-pagination-list {
  display: flex;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.fh-pagination-list li a,
.fh-pagination-list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--fh-radius);
  font-family: var(--fh-font-display);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--fh-border);
  color: var(--fh-muted);
  transition: all 0.2s;
}

.fh-pagination-list li a:hover {
  border-color: rgba(255, 107, 0, 0.3);
  color: var(--fh-accent);
  background: var(--fh-accent-dim);
}

.fh-pagination-list li .current {
  background: var(--fh-accent);
  border-color: var(--fh-accent);
  color: #fff;
}

/* =============================================
   COMMENTS
   ============================================= */
.fh-comments {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--fh-border);
}

.fh-comments-title {
  font-family: var(--fh-font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--fh-text);
}

.comment-list {
  list-style: none;
  margin-bottom: 48px;
}

.comment {
  padding: 24px 0;
  border-bottom: 1px solid var(--fh-border);
}

.comment-author .avatar {
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}

.comment-author .fn {
  font-weight: 600;
  color: var(--fh-text);
}

.comment-metadata {
  font-size: 12px;
  color: var(--fh-muted);
  margin-bottom: 12px;
}

.comment-content p {
  font-size: 15px;
  color: var(--fh-muted);
  line-height: 1.7;
}

.fh-comment-form input,
.fh-comment-form textarea {
  width: 100%;
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  padding: 14px 16px;
  color: var(--fh-text);
  font-family: var(--fh-font-body);
  font-size: 15px;
  transition: border-color 0.2s;
  margin-bottom: 16px;
}

.fh-comment-form input:focus,
.fh-comment-form textarea:focus {
  outline: none;
  border-color: rgba(255, 107, 0, 0.4);
}

.fh-comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* =============================================
   404 PAGE
   ============================================= */
.fh-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px;
  text-align: center;
}

.fh-404-num {
  font-family: var(--fh-font-display);
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 800;
  letter-spacing: -8px;
  line-height: 1;
  -webkit-text-stroke: 2px var(--fh-accent);
  color: transparent;
  margin-bottom: 24px;
}

.fh-404-title {
  font-family: var(--fh-font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--fh-text);
}

.fh-404-text {
  font-size: 16px;
  color: var(--fh-muted);
  max-width: 440px;
  margin: 0 auto 40px;
}

/* =============================================
   ELEMENTOR-SPECIFIC
   ============================================= */

/* Remove default margins when Elementor handles sections */
.elementor-section-wrap + .fh-footer,
.elementor-section-wrap + footer {
  margin-top: 0;
}

/* Elementor canvas — no header/footer */
.elementor-page-template-canvas .fh-header,
.elementor-page-template-canvas .fh-footer {
  display: none;
}

/* Full-width pages */
.fh-page-full-width .fh-main,
.elementor-page .fh-main {
  padding-top: 0;
}

/* Elementor widget overrides */
.elementor-widget-heading .elementor-heading-title {
  color: var(--fh-text);
}

.elementor-widget-text-editor {
  color: var(--fh-muted);
}

/* Elementor buttons */
.elementor-button.elementor-button-primary,
.elementor-button[data-button-type="primary"] {
  background: var(--fh-accent) !important;
  border-color: var(--fh-accent) !important;
}

.elementor-button.elementor-button-primary:hover {
  background: var(--fh-accent2) !important;
}
