/* ==============================================
   The One HR — Universal Landing Page Styles
   B2B Service Pages Template
   ============================================== */

/* --- Import Montserrat from local --- */
/* (uses the same local font already downloaded) */

/* --- CSS Variables (Brand Tokens) --- */
:root {
  --bg-dark:      #141619;
  --bg-mid:       #1e2024;
  --bg-card:      #23262b;
  --accent-violet: #863bff;
  --accent-violet-hover: #9b5eff;
  --accent-yellow: #ffb200;
  --text-white:   #ffffff;
  --text-muted:   #a0a5b0;
  --text-dark:    #141619;
  --border:       rgba(255,255,255,0.12);
  --radius-lg:    40px;
  --radius-md:    20px;
  --radius-sm:    12px;
  --transition:   0.25s ease;
  --max-w:        1200px;
  --font:         'Montserrat', Arial, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Scrollbar --- */
body::-webkit-scrollbar { width: 5px; background: var(--bg-dark); }
body::-webkit-scrollbar-thumb { background: linear-gradient(45deg, #5e77ff, var(--accent-violet)); border-radius: 20px; }

/* --- Container --- */
.lp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .lp-container { padding: 0 20px; } }

/* ==========================================
   HEADER / NAV
   ========================================== */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.lp-header.scrolled {
  background: rgba(20,22,25,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.lp-logo img { height: 40px; }
.lp-nav { display: flex; gap: 32px; }
.lp-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white);
  opacity: 0.75;
  transition: opacity var(--transition);
}
.lp-nav a:hover { opacity: 1; }
.lp-nav a.back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.75;
}
.lp-nav a.back-link::before {
  content: '←';
}
@media (max-width: 768px) {
  .lp-header__inner { padding: 0 20px; }
  .lp-nav { display: none; }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.lp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.lp-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(134,59,255,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.lp-hero__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(134,59,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134,59,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.lp-hero__content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.lp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(134,59,255,0.15);
  border: 1px solid rgba(134,59,255,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #b07fff;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.lp-hero__tag::before { content: '◆'; font-size: 8px; }
.lp-hero h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.lp-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-violet), #5e77ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.lp-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.lp-hero__proof {
  margin-top: 60px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.lp-hero__stat strong {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}
.lp-hero__stat strong span { color: var(--accent-violet); }
.lp-hero__stat small {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}
@media (max-width: 768px) {
  .lp-hero { padding: 110px 0 60px; }
  .lp-hero__content { padding: 0 20px; }
  .lp-hero__proof { gap: 24px; }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition);
  text-decoration: none;
  border-radius: 30px;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent-violet);
  color: #fff;
  padding: 16px 36px;
  box-shadow: 0 4px 24px rgba(134,59,255,0.35);
}
.btn-primary:hover {
  background: var(--accent-violet-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(134,59,255,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--text-white);
  padding: 15px 34px;
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}
.btn-yellow {
  background: var(--accent-yellow);
  color: var(--bg-dark);
  padding: 16px 36px;
  box-shadow: 0 4px 20px rgba(255,178,0,0.3);
}
.btn-yellow:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* ==========================================
   SECTION COMMONS
   ========================================== */
.lp-section {
  padding: 100px 0;
}
.lp-section--dark { background: var(--bg-dark); }
.lp-section--mid  { background: var(--bg-mid); }
.lp-section--card { background: var(--bg-card); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-violet);
  margin-bottom: 16px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent-violet); }

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  color: var(--accent-violet);
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 56px;
}

/* ==========================================
   PAIN SECTION — Problem recognition
   ========================================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.pain-card:hover {
  border-color: rgba(134,59,255,0.4);
  transform: translateY(-4px);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.pain-card:hover::before { opacity: 1; }
.pain-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.pain-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   PROCESS SECTION — Steps
   ========================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px 32px;
  position: relative;
}
.step-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: rgba(134,59,255,0.2);
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================
   CASE SECTION
   ========================================== */
.case-block {
  background: linear-gradient(135deg, rgba(134,59,255,0.12) 0%, rgba(94,119,255,0.08) 100%);
  border: 1px solid rgba(134,59,255,0.25);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.case-block::before {
  content: '»';
  position: absolute;
  top: 32px; right: 48px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(134,59,255,0.1);
  line-height: 1;
}
.case-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.case-tag {
  background: rgba(134,59,255,0.2);
  border: 1px solid rgba(134,59,255,0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #b07fff;
  letter-spacing: 0.05em;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 0;
}
@media (max-width: 768px) { .case-grid { grid-template-columns: 1fr; } }
.case-item-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-yellow);
  margin-bottom: 10px;
}
.case-item-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-white);
}
.case-result {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.case-result-stat strong {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-yellow);
  display: block;
  line-height: 1;
}
.case-result-stat span {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}
@media (max-width: 768px) { .case-block { padding: 32px 24px; } }

/* ==========================================
   CALCULATOR / LEAD MAGNET SECTION
   ========================================== */
.calc-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) { .calc-wrap { grid-template-columns: 1fr; } }
.calc-left {
  padding: 56px 48px;
  border-right: 1px solid var(--border);
}
@media (max-width: 900px) { .calc-left { border-right: none; border-bottom: 1px solid var(--border); } }
.calc-right {
  padding: 56px 48px;
  background: linear-gradient(160deg, rgba(134,59,255,0.1) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) { .calc-left, .calc-right { padding: 32px 24px; } }

.input-group {
  margin-bottom: 24px;
}
.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.input-group input,
.input-group select {
  width: 100%;
  background: var(--bg-mid);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-white);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.input-group input:focus,
.input-group select:focus {
  border-color: var(--accent-violet);
}
.input-group select option { background: var(--bg-card); color: var(--text-white); }

.input-slider-wrap { display: flex; align-items: center; gap: 16px; }
.input-slider-wrap input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  background: var(--bg-mid);
  border: none;
  border-radius: 100px;
  height: 6px;
  padding: 0;
  cursor: pointer;
}
.input-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: var(--accent-violet);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(134,59,255,0.25);
}
.slider-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  min-width: 36px;
  text-align: right;
}

/* Calc result pane */
.calc-result-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.calc-result-num {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  color: var(--accent-yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.calc-result-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}
.calc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.calc-breakdown-row span { color: var(--text-muted); }
.calc-breakdown-row strong { color: var(--text-white); }

/* ==========================================
   TEAM / EXPERTS SECTION
   ========================================== */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.expert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.expert-card:hover {
  border-color: rgba(134,59,255,0.4);
  transform: translateY(-4px);
}
.expert-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid rgba(134,59,255,0.4);
}
.expert-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.expert-role {
  font-size: 13px;
  color: var(--accent-violet);
  font-weight: 600;
  margin-bottom: 12px;
}
.expert-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ==========================================
   CTA / FOOTER SECTION
   ========================================== */
.lp-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #18111f 100%);
  position: relative;
  overflow: hidden;
}
.lp-cta__glow {
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(134,59,255,0.25), transparent 70%);
  pointer-events: none;
}
.lp-cta__box {
  background: linear-gradient(135deg, rgba(134,59,255,0.15), rgba(94,119,255,0.1));
  border: 1px solid rgba(134,59,255,0.3);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.lp-cta__box h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.lp-cta__box p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.lp-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-cta__small {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .lp-cta__box { padding: 40px 24px; }
}

/* ==========================================
   FOOTER
   ========================================== */
.lp-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.lp-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.lp-footer__logo img { height: 32px; opacity: 0.7; }
.lp-footer__links { display: flex; gap: 24px; }
.lp-footer__links a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.lp-footer__links a:hover { color: var(--text-white); }
.lp-footer__copy { font-size: 13px; color: var(--text-muted); }

/* ==========================================
   UTILITIES & ANIMATIONS
   ========================================== */
.text-violet { color: var(--accent-violet); }
.text-yellow { color: var(--accent-yellow); }
.text-muted  { color: var(--text-muted); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.15s; }
.fade-up-3 { animation-delay: 0.28s; }
.fade-up-4 { animation-delay: 0.42s; }

/* Divider */
.lp-divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}

 / *   P r i v a c y   C h e c k b o x   * / 
 . p r i v a c y - c h e c k b o x   { 
     d i s p l a y :   f l e x ; 
     g a p :   1 2 p x ; 
     a l i g n - i t e m s :   f l e x - s t a r t ; 
     c u r s o r :   p o i n t e r ; 
     t e x t - a l i g n :   l e f t ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
     f o n t - s i z e :   1 3 p x ; 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 6 ) ; 
     l i n e - h e i g h t :   1 . 4 5 ; 
 } 
 . p r i v a c y - c h e c k b o x   i n p u t [ t y p e = ' c h e c k b o x ' ]   { 
     m a r g i n - t o p :   3 p x ; 
     a c c e n t - c o l o r :   v a r ( - - a c c e n t - v i o l e t ,   # 8 6 3 b f f ) ; 
     c u r s o r :   p o i n t e r ; 
     w i d t h :   1 6 p x ; 
     h e i g h t :   1 6 p x ; 
     f l e x - s h r i n k :   0 ; 
 } 
 . p r i v a c y - c h e c k b o x   a   { 
     c o l o r :   v a r ( - - a c c e n t - v i o l e t ,   # 8 6 3 b f f ) ; 
     t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
 } 
 . p r i v a c y - c h e c k b o x   a : h o v e r   { 
     t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 . p r i v a c y - c h e c k b o x   i n p u t : r e q u i r e d : i n v a l i d   { 
     / *   o u t l i n e :   1 p x   s o l i d   # f f 4 d 4 f ;   o u t l i n e - o f f s e t :   2 p x ; * / 
 } 
  
 