/* =========================================
   HOME REDESIGN - Modern Dark Finance Theme
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── Global overrides so master body doesn't show white ── */
body:has(.hrd-page),
html:has(.hrd-page) {
  background: #070b14 !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Fallback for browsers without :has() */
body { background: #070b14; }

/* ── CSS Variables ── */
:root {
  --accent: var(--AppColor, #00d4aa);
  --accent-glow: rgba(0, 212, 170, 0.25);
  --accent-dark: #009e7e;
  --bg-base:  #070b14;
  --bg-card:  #0d1424;
  --bg-card2: #111827;
  --bg-glass: rgba(255,255,255,0.04);
  --bg-glass-border: rgba(255,255,255,0.08);
  --text-primary: #f0f4ff;
  --text-secondary: #8b9bb4;
  --text-muted: #4a5568;
  --border: rgba(255,255,255,0.06);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
}

/* ── Reset for redesign scope ── */
.hrd-page * { box-sizing: border-box; }
.hrd-page { font-family: 'Inter', 'Space Grotesk', sans-serif; background: var(--bg-base); color: var(--text-primary); overflow-x: hidden; }

/* ── Scrollbar ── */
.hrd-page::-webkit-scrollbar { width: 6px; }
.hrd-page::-webkit-scrollbar-track { background: var(--bg-base); }
.hrd-page::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.hrd-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 0 clamp(20px, 4vw, 80px);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.hrd-navbar.scrolled { background: rgba(7, 11, 20, 0.97); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.hrd-nav-logo img { height: 40px; filter: brightness(1.1); }
.hrd-nav-logo span { font-size: 22px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.5px; }

.hrd-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.hrd-nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; letter-spacing: 0.2px; }
.hrd-nav-links a:hover, .hrd-nav-links a.active { color: var(--text-primary); }

.hrd-nav-actions { display: flex; align-items: center; gap: 12px; }
.hrd-btn-ghost {
  padding: 9px 22px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
  color: var(--text-primary); background: transparent; border: 1px solid var(--border);
  cursor: pointer; text-decoration: none; transition: all 0.25s ease;
}
.hrd-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.hrd-btn-primary {
  padding: 9px 22px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
  color: #fff; background: var(--accent); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: all 0.25s ease;
  box-shadow: 0 0 20px var(--accent-glow);
}
.hrd-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px var(--accent-glow); color: #fff; }

.hrd-nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hrd-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hrd-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px clamp(20px, 5vw, 100px) 80px;
  overflow: hidden;
}

/* Animated grid background */
.hrd-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(0,212,170,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(0,212,170,0.08) 0%, transparent 70%),
    var(--bg-base);
}
.hrd-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hrd-hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hrd-hero-orb-1 { width: 500px; height: 500px; background: rgba(0,212,170,0.12); top: -100px; right: -100px; animation: orbFloat 8s ease-in-out infinite; }
.hrd-hero-orb-2 { width: 300px; height: 300px; background: rgba(99,102,241,0.1); bottom: 50px; left: 10%; animation: orbFloat 10s ease-in-out infinite reverse; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-20px) scale(1.05); } }

.hrd-hero-content { position: relative; z-index: 1; max-width: 680px; }
.hrd-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 28px;
  background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.25);
  font-size: 13px; font-weight: 500; color: var(--accent);
  animation: fadeSlideUp 0.6s ease both;
}
.hrd-hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(1.3); } }

.hrd-hero h1 {
  font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 1.08;
  letter-spacing: -2px; color: var(--text-primary); margin: 0 0 10px;
  animation: fadeSlideUp 0.6s ease 0.1s both;
}
.hrd-hero-accent { color: var(--accent); display: block; }
.hrd-hero-subtitle {
  font-size: clamp(17px, 2vw, 20px); line-height: 1.7;
  color: var(--text-secondary); margin: 24px 0 40px;
  max-width: 520px; animation: fadeSlideUp 0.6s ease 0.2s both;
}
.hrd-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeSlideUp 0.6s ease 0.3s both; }
.hrd-hero-cta .hrd-btn-primary { font-size: 15px; padding: 13px 30px; }
.hrd-hero-cta .hrd-btn-ghost { font-size: 15px; padding: 13px 30px; }

/* Stats row below */
.hrd-hero-stats {
  display: flex; gap: 40px; margin-top: 60px; flex-wrap: wrap;
  animation: fadeSlideUp 0.6s ease 0.5s both;
}
.hrd-hero-stat {}
.hrd-hero-stat-num { font-size: 28px; font-weight: 800; color: var(--text-primary); letter-spacing: -1px; }
.hrd-hero-stat-num span { color: var(--accent); }
.hrd-hero-stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

.hrd-hero-visual { position: relative; z-index: 1; flex: 1; min-width: 320px; display: flex; justify-content: flex-end; align-items: center; }
.hrd-hero-card-mock {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: 24px; padding: 28px; width: 360px;
  box-shadow: var(--shadow-card);
  animation: fadeSlideUp 0.8s ease 0.2s both;
}
.hrd-mock-label { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.hrd-mock-value { font-size: 36px; font-weight: 800; color: var(--text-primary); letter-spacing: -1px; }
.hrd-mock-change { font-size: 14px; font-weight: 600; color: #22c55e; margin-top: 2px; }
.hrd-mock-chart { margin: 20px 0; height: 60px; position: relative; }
.hrd-mock-chart svg { width: 100%; height: 100%; }
.hrd-mock-row { display: flex; gap: 10px; }
.hrd-mock-coin {
  flex: 1; background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px; display: flex; align-items: center; gap: 10px;
}
.hrd-mock-coin-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.hrd-mock-coin-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.hrd-mock-coin-price { font-size: 12px; color: var(--text-secondary); }
.hrd-mock-gain { font-size: 11px; font-weight: 600; color: #22c55e; text-align: right; margin-left: auto; white-space: nowrap; }
.hrd-mock-gain.down { color: #ef4444; }

/* ============================================================
   TICKER STRIP
   ============================================================ */
.hrd-ticker {
  background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0; overflow: hidden; position: relative;
}
.hrd-ticker-track {
  display: flex; width: max-content;
  animation: tickerScroll 35s linear infinite;
}
.hrd-ticker:hover .hrd-ticker-track { animation-play-state: paused; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hrd-ticker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 36px; white-space: nowrap; border-right: 1px solid var(--border);
}
.hrd-ticker-sym { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.hrd-ticker-price { font-size: 14px; color: var(--text-secondary); }
.hrd-ticker-chg { font-size: 13px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.hrd-ticker-chg.up { color: #22c55e; background: rgba(34,197,94,0.1); }
.hrd-ticker-chg.down { color: #ef4444; background: rgba(239,68,68,0.1); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.hrd-section { padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 100px); }
.hrd-section-header { text-align: center; margin-bottom: 64px; }
.hrd-section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: var(--radius-pill);
  background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.2);
  font-size: 12px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.hrd-section-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -1.5px;
  color: var(--text-primary); line-height: 1.1; margin: 0 0 16px;
}
.hrd-section-title em { font-style: normal; color: var(--accent); }
.hrd-section-desc { font-size: 17px; color: var(--text-secondary); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ============================================================
   STATS COUNTER SECTION
   ============================================================ */
.hrd-stats { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hrd-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hrd-stat-card {
  padding: 48px 36px; text-align: center; border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background 0.3s;
}
.hrd-stat-card:last-child { border-right: none; }
.hrd-stat-card:hover { background: rgba(255,255,255,0.02); }
.hrd-stat-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.hrd-stat-card:hover::before { opacity: 1; }
.hrd-stat-icon { font-size: 28px; margin-bottom: 16px; }
.hrd-stat-num { font-size: clamp(28px, 3vw, 44px); font-weight: 800; letter-spacing: -2px; color: var(--text-primary); line-height: 1; }
.hrd-stat-num-suffix { font-size: 24px; color: var(--accent); }
.hrd-stat-label { font-size: 14px; color: var(--text-secondary); margin-top: 8px; font-weight: 500; }

/* ============================================================
   FEATURES / HOW IT WORKS
   ============================================================ */
.hrd-features { background: var(--bg-base); }
.hrd-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hrd-feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden;
  transition: all 0.3s ease; cursor: default;
}
.hrd-feature-card:hover { border-color: rgba(0,212,170,0.35); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px var(--accent-glow); }
.hrd-feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,212,170,0.06), transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.hrd-feature-card:hover::after { opacity: 1; }
.hrd-feature-num {
  font-size: 72px; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.03); position: absolute; top: 16px; right: 24px;
  letter-spacing: -4px; pointer-events: none;
}
.hrd-feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm); margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  background: rgba(0,212,170,0.12); color: var(--accent); position: relative; z-index: 1;
}
.hrd-feature-title { font-size: 20px; font-weight: 700; color: var(--text-primary); margin: 0 0 12px; position: relative; z-index: 1; }
.hrd-feature-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin: 0; position: relative; z-index: 1; }

/* ============================================================
   INVESTMENT PLANS
   ============================================================ */
.hrd-plans { background: var(--bg-base); }
.hrd-plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
  align-items: start;
}
.hrd-plan-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden;
  transition: all 0.35s ease;
}
.hrd-plan-card:hover { border-color: rgba(0,212,170,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.4); transform: translateY(-4px); }
.hrd-plan-card.featured {
  border-color: var(--accent); background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0,212,170,0.06) 100%);
  box-shadow: 0 0 40px var(--accent-glow);
}
.hrd-plan-featured-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 20px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  letter-spacing: 1px; text-transform: uppercase; white-space: nowrap;
}
.hrd-plan-name { font-size: 14px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.hrd-plan-range { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.hrd-plan-interest {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,212,170,0.12); color: var(--accent);
  font-size: 14px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  margin-bottom: 24px;
}
.hrd-plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.hrd-plan-features { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.hrd-plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.hrd-plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.hrd-plan-cta {
  display: block; width: 100%; padding: 13px; border-radius: var(--radius-sm);
  text-align: center; font-size: 15px; font-weight: 700; text-decoration: none;
  background: var(--bg-glass); border: 1px solid var(--border);
  color: var(--text-primary); transition: all 0.25s ease;
}
.hrd-plan-cta:hover, .hrd-plan-card.featured .hrd-plan-cta {
  background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ============================================================
   PROFIT CALCULATOR
   ============================================================ */
.hrd-calc { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hrd-calc-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hrd-calc-form {}
.hrd-calc-title { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -1px; color: var(--text-primary); margin: 0 0 12px; }
.hrd-calc-subtitle { font-size: 16px; color: var(--text-secondary); margin-bottom: 36px; line-height: 1.6; }
.hrd-form-group { margin-bottom: 20px; }
.hrd-form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.hrd-form-control {
  width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--bg-base); border: 1px solid var(--border);
  color: var(--text-primary); font-size: 15px; font-family: inherit;
  transition: border-color 0.25s;
  appearance: none;
}
.hrd-form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.hrd-form-control option { background: var(--bg-card2); }
.hrd-calc-result {
  background: var(--bg-base); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; display: flex; flex-direction: column; gap: 28px;
}
.hrd-result-item {}
.hrd-result-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.hrd-result-value { font-size: 38px; font-weight: 800; color: var(--text-primary); letter-spacing: -1.5px; }
.hrd-result-value.highlight { color: var(--accent); }
.hrd-result-divider { height: 1px; background: var(--border); }
.hrd-calc-note { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-top: 8px; }

/* ============================================================
   WHY US / SERVICES
   ============================================================ */
.hrd-why { background: var(--bg-base); }
.hrd-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hrd-why-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: all 0.3s ease;
}
.hrd-why-card:hover { border-color: rgba(0,212,170,0.3); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.35); }
.hrd-why-icon { font-size: 32px; margin-bottom: 20px; display: block; }
.hrd-why-title { font-size: 18px; font-weight: 700; color: var(--text-primary); margin: 0 0 12px; }
.hrd-why-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* ============================================================
   MARKET TICKER / TRADINGVIEW
   ============================================================ */
.hrd-market { background: var(--bg-base); }
.hrd-market-widget-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; padding: 0;
}

/* ============================================================
   HOW IT WORKS STEPS
   ============================================================ */
.hrd-steps { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hrd-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.hrd-step-card {
  padding: 48px 36px; text-align: center; border-right: 1px solid var(--border);
  position: relative;
}
.hrd-step-card:last-child { border-right: none; }
.hrd-step-connector {
  position: absolute; top: 72px; right: -22px; z-index: 1;
  width: 44px; height: 2px; background: linear-gradient(90deg, var(--accent), transparent);
}
.hrd-step-card:last-child .hrd-step-connector { display: none; }
.hrd-step-num {
  width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  font-size: 22px; font-weight: 800; color: var(--accent);
  background: rgba(0,212,170,0.06);
  position: relative;
}
.hrd-step-num::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px dashed rgba(0,212,170,0.25);
  animation: spin 10s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hrd-step-icon { font-size: 24px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hrd-step-title { font-size: 20px; font-weight: 700; color: var(--text-primary); margin: 0 0 12px; }
.hrd-step-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.hrd-testimonials { background: var(--bg-base); }
.hrd-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hrd-testi-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
  position: relative; transition: all 0.3s;
}
.hrd-testi-card:hover { border-color: rgba(0,212,170,0.25); transform: translateY(-4px); }
.hrd-testi-quote { position: absolute; top: 20px; right: 24px; font-size: 60px; line-height: 1; color: rgba(0,212,170,0.1); font-family: Georgia, serif; }
.hrd-testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.hrd-testi-stars span { color: #f59e0b; font-size: 14px; }
.hrd-testi-text { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.hrd-testi-author { display: flex; align-items: center; gap: 12px; }
.hrd-testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.hrd-testi-name { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.hrd-testi-role { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.hrd-cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  position: relative; overflow: hidden;
}
.hrd-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hrd-cta-inner {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.hrd-cta-text-group h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: #fff; margin: 0 0 10px; letter-spacing: -1px; }
.hrd-cta-text-group p { font-size: 16px; color: rgba(255,255,255,0.8); margin: 0; }
.hrd-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hrd-cta-btn-white {
  padding: 13px 30px; border-radius: var(--radius-pill); font-size: 15px; font-weight: 700;
  background: #fff; color: var(--accent); text-decoration: none; transition: all 0.25s;
  border: none; cursor: pointer;
}
.hrd-cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); color: var(--accent); }
.hrd-cta-btn-outline {
  padding: 13px 30px; border-radius: var(--radius-pill); font-size: 15px; font-weight: 700;
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none; transition: all 0.25s;
}
.hrd-cta-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.hrd-footer { background: var(--bg-card); border-top: 1px solid var(--border); }
.hrd-footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding: 64px clamp(20px, 5vw, 100px) 48px;
}
.hrd-footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.hrd-footer-newsletter { display: flex; gap: 0; }
.hrd-footer-newsletter input {
  flex: 1; padding: 12px 16px; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: var(--bg-base); border: 1px solid var(--border); border-right: none;
  color: var(--text-primary); font-size: 14px; outline: none; font-family: inherit;
}
.hrd-footer-newsletter input::placeholder { color: var(--text-muted); }
.hrd-footer-newsletter input:focus { border-color: var(--accent); }
.hrd-footer-newsletter button {
  padding: 12px 20px; background: var(--accent); border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #fff; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s;
  font-family: inherit;
}
.hrd-footer-newsletter button:hover { background: var(--accent-dark); }
.hrd-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.hrd-footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text-secondary);
  font-size: 16px; text-decoration: none; transition: all 0.2s;
}
.hrd-footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.hrd-footer-col h4 { font-size: 14px; font-weight: 700; color: var(--text-primary); margin: 0 0 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.hrd-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.hrd-footer-col ul li a { font-size: 14px; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.hrd-footer-col ul li a:hover { color: var(--accent); }

.hrd-footer-bottom {
  padding: 20px clamp(20px, 5vw, 100px);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.hrd-footer-bottom p { font-size: 13px; color: var(--text-muted); margin: 0; }
.hrd-footer-bottom-links { display: flex; gap: 24px; }
.hrd-footer-bottom-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.hrd-footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.hrd-scroll-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 9999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  box-shadow: 0 4px 20px var(--accent-glow); transition: all 0.3s;
  opacity: 0; pointer-events: none;
}
.hrd-scroll-top.visible { opacity: 1; pointer-events: auto; }
.hrd-scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--accent-glow); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hrd-anim { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.hrd-anim.visible { opacity: 1; transform: translateY(0); }
.hrd-anim-delay-1 { transition-delay: 0.1s; }
.hrd-anim-delay-2 { transition-delay: 0.2s; }
.hrd-anim-delay-3 { transition-delay: 0.3s; }
.hrd-anim-delay-4 { transition-delay: 0.4s; }
.hrd-anim-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hrd-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hrd-stat-card:nth-child(2) { border-right: none; }
  .hrd-stat-card:nth-child(3) { border-top: 1px solid var(--border); }
  .hrd-stat-card:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .hrd-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hrd-features-grid, .hrd-why-grid, .hrd-testi-grid { grid-template-columns: repeat(2, 1fr); }
  .hrd-steps-grid { grid-template-columns: 1fr; }
  .hrd-step-card { border-right: none; border-bottom: 1px solid var(--border); }
  .hrd-step-card:last-child { border-bottom: none; }
  .hrd-step-connector { display: none; }
  .hrd-calc-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hrd-nav-links, .hrd-nav-actions { display: none; }
  .hrd-nav-toggle { display: flex; }
  .hrd-hero { flex-direction: column; padding-top: 100px; }
  .hrd-hero-visual { display: none; }
  .hrd-features-grid, .hrd-why-grid, .hrd-testi-grid { grid-template-columns: 1fr; }
  .hrd-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hrd-stat-card { border-right: none; border-bottom: 1px solid var(--border); }
  .hrd-cta-inner { flex-direction: column; text-align: center; }
  .hrd-cta-actions { justify-content: center; }
  .hrd-footer-top { grid-template-columns: 1fr; }
  .hrd-footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hrd-hero h1 { letter-spacing: -1px; }
  .hrd-hero-stats { gap: 24px; }
  .hrd-plans-grid { grid-template-columns: 1fr; }
}
