/* ==========================================================================
   ProResume — Design tokens
   ========================================================================== */
:root{
  --bg: #F8F8F7;
  --card: #FFFFFF;
  --text: #0F0F0F;
  --text-soft: #666666;
  --border: #ECECEC;
  --accent: #111111;
  --accent-hover: #000000;
  --success: #4CAF50;
  --warning: #F59E0B;

  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body: 'DM Sans', 'Inter', sans-serif;

  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 30px;

  --container: 1280px;
  --section-space: 140px;

  --shadow-soft: 0 2px 8px rgba(15,15,15,0.04), 0 12px 32px rgba(15,15,15,0.06);
  --shadow-lift: 0 8px 20px rgba(15,15,15,0.06), 0 24px 48px rgba(15,15,15,0.10);
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4{
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 700;
}
p{ margin: 0; color: var(--text-soft); }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
img{ max-width: 100%; display: block; }
button{ font-family: inherit; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow{ max-width: 760px; }

section{ position: relative; }
.hero, .trusted{ }
.features, .builder, .templates, .process, .testimonials, .pricing, .faq, .cta{
  padding-top: var(--section-space);
}

:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ==========================================================================
   Cursor glow + loader
   ========================================================================== */
.cursor-glow{
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(15,15,15,0.045) 0%, rgba(15,15,15,0) 70%);
  transform: translate(-50%,-50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}
.cursor-glow.active{ opacity: 1; }

.page-loader{
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden{ opacity: 0; visibility: hidden; }
.loader-mark{
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  animation: loaderPulse 1.1s ease-in-out infinite;
}
@keyframes loaderPulse{
  0%,100%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(0.9); opacity: 0.7; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 16px;
  padding: 13px 24px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
}
.btn:active{ transform: scale(0.97); }
.btn-primary{
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover{ background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover{ border-color: var(--text); transform: translateY(-2px); }
.btn-lg{ padding: 16px 30px; font-size: 15px; border-radius: 16px; }
.btn-sm{ padding: 10px 18px; font-size: 14px; }
.btn-block{ width: 100%; }

.ripple{
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}
.btn-ghost .ripple{ background: rgba(15,15,15,0.12); }
@keyframes rippleAnim{
  to{ transform: scale(3); opacity: 0; }
}

.link-btn{
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s ease;
}
.link-btn:hover{ color: var(--text); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.nav-wrap{
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 24px 0;
}
.navbar{
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled{
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.nav-logo{ display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.logo-mark{
  width: 28px; height: 28px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.logo-text{ font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a{
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.25s ease;
}
.nav-links a:hover{ color: var(--text); }
.nav-links a:hover::after{ width: 100%; }

.nav-actions{ display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-burger{
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-burger span{ width: 20px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.mobile-menu{
  display: none;
  flex-direction: column;
  gap: 4px;
  max-width: 1120px;
  margin: 8px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu.open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a{
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.mobile-menu a:hover{ background: var(--bg); }
.mobile-menu .btn{ margin-top: 6px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  padding: 96px 0 40px;
  overflow: hidden;
}
.hero-glow{
  position: absolute;
  top: -200px; left: 50%;
  width: 900px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(15,15,15,0.05) 0%, rgba(15,15,15,0) 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy{ max-width: 560px; }
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--card);
  margin-bottom: 28px;
}
.badge-dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
}
.hero-title{
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.04;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-sub{
  font-size: 18px;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-actions{ display: flex; gap: 14px; margin-bottom: 44px; flex-wrap: wrap; }
.hero-actions .btn-ghost svg{ color: var(--text); }

.hero-proof{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-soft);
}
.proof-item{ display: flex; align-items: center; gap: 6px; font-weight: 500; }
.stars{ color: var(--warning); font-size: 12px; letter-spacing: 1px; }
.proof-num{ color: var(--text); font-weight: 700; }
.counter{ color: var(--text); font-weight: 700; }
.proof-divider{ width: 1px; height: 14px; background: var(--border); }

/* ---- Hero dashboard mockup ---- */
.hero-visual{ position: relative; min-height: 520px; }
.dash-stage{
  position: relative;
  width: 100%;
  height: 520px;
}
.dash-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.dash-main{
  position: absolute;
  top: 10px; left: 0;
  width: 360px;
  padding: 22px;
  z-index: 2;
  animation: floatSlow 7s ease-in-out infinite;
}
.dash-main-tabs{
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.tab{
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  color: var(--text-soft);
}
.tab.active{ background: var(--bg); color: var(--text); }
.dash-doc .doc-line{
  height: 8px;
  border-radius: 5px;
  background: var(--border);
  margin-bottom: 10px;
}
.doc-name{ width: 55%; height: 13px; background: var(--text); opacity: 0.9; }
.doc-role{ width: 38%; margin-bottom: 20px; }
.doc-block{ margin-bottom: 16px; }
.w-90{ width: 90%; } .w-95{ width: 95%; } .w-85{ width: 85%; } .w-80{ width: 80%; }
.w-75{ width: 75%; } .w-70{ width: 70%; } .w-60{ width: 60%; }
.accent-line{ background: var(--success); opacity: 0.35; }

.dash-float{
  position: absolute;
  padding: 16px 18px;
  z-index: 3;
}
.dash-ats{
  top: -6px; right: 10px;
  width: 190px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatSlow 6s ease-in-out infinite;
  animation-delay: 0.3s;
}
.ring{ position: relative; width: 40px; height: 40px; flex-shrink: 0; }
.ring svg{ width: 40px; height: 40px; transform: rotate(-90deg); }
.ring-track{ fill: none; stroke: var(--border); stroke-width: 3; }
.ring-val{
  fill: none;
  stroke: var(--text);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 106.8;
  stroke-dashoffset: 106.8;
  transition: stroke-dashoffset 1.4s cubic-bezier(.2,.8,.2,1);
}
.ring-num{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.ats-copy{ display: flex; flex-direction: column; gap: 2px; }
.ats-title{ font-size: 13px; font-weight: 700; }
.ats-sub{ font-size: 12px; color: var(--success); font-weight: 500; }

.dash-suggest{
  top: 190px; right: -18px;
  width: 210px;
  animation: floatSlow 8s ease-in-out infinite;
  animation-delay: 0.6s;
}
.dash-suggest p{ font-size: 13px; color: var(--text); line-height: 1.45; margin-top: 8px; }

.dash-template{
  bottom: 96px; left: -20px;
  width: 160px;
  animation: floatSlow 7.5s ease-in-out infinite;
  animation-delay: 0.9s;
}
.tpl-swatches{ display: flex; gap: 8px; margin-top: 10px; }
.swatch{
  width: 28px; height: 36px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.swatch.active{ border-color: var(--text); background: #fff; box-shadow: inset 0 0 0 1px var(--text); }

.dash-export{
  bottom: 10px; right: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  animation: floatSlow 6.5s ease-in-out infinite;
  animation-delay: 0.2s;
}

.pill-label{
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}

.badge-float{
  position: absolute;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  z-index: 4;
}
.badge-1{ top: 150px; left: -6px; animation: floatSlow 9s ease-in-out infinite; }
.badge-2{ bottom: 190px; right: 6px; animation: floatSlow 10s ease-in-out infinite; animation-delay: 1.2s; }
.badge-3{ top: 60px; left: 50%; animation: floatSlow 8.5s ease-in-out infinite; animation-delay: 0.5s; }

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

/* ==========================================================================
   Trusted logos
   ========================================================================== */
.trusted{ padding: 64px 0 0; }
.trusted-label{
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.logo-strip{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-bottom: 8px;
}
.logo-strip span{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #C7C7C4;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}
.logo-strip span:hover{ color: var(--text-soft); }

/* ==========================================================================
   Section heads
   ========================================================================== */
.section-head{
  max-width: 620px;
  margin: 0 auto 64px;
  text-align: center;
}
.eyebrow{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.section-head h2{
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 14px;
}
.section-head p{ font-size: 17px; line-height: 1.6; }

/* ==========================================================================
   Features
   ========================================================================== */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}
.f-icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  margin-bottom: 20px;
}
.feature-card h3{ font-size: 17px; margin-bottom: 8px; }
.feature-card p{ font-size: 14.5px; line-height: 1.55; }

/* ==========================================================================
   Builder preview
   ========================================================================== */
.builder-frame{
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 460px;
}
.builder-sidebar{
  border-right: 1px solid var(--border);
  padding: 24px 16px;
}
.side-item{
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.side-item.active{ background: var(--bg); color: var(--text); font-weight: 600; }
.builder-editor{ padding: 24px 36px; }
.editor-toolbar{ display: flex; gap: 6px; margin-bottom: 28px; }
.toolbar-dot{ width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.editor-doc .doc-line{
  height: 9px; border-radius: 5px; background: var(--border); margin-bottom: 14px;
}
.editor-doc .doc-name{ height: 16px; width: 46%; background: var(--text); opacity: 0.9; margin-bottom: 8px; }
.editor-doc .doc-role{ width: 30%; margin-bottom: 26px; }
.highlight-edit{ background: linear-gradient(90deg, var(--border) 0%, rgba(76,175,80,0.25) 100%); }
.builder-assistant{
  border-left: 1px solid var(--border);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.assist-block{ }
.assist-score{ font-family: var(--font-display); font-size: 30px; font-weight: 800; margin-top: 6px; }
.assist-score span{ font-size: 14px; color: var(--text-soft); font-weight: 500; }
.assist-text{ font-size: 13.5px; margin-top: 6px; }

/* ==========================================================================
   Templates
   ========================================================================== */
.template-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.template-card{
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
}
.template-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.tpl-thumb{
  height: 210px;
  background: var(--bg);
  position: relative;
  padding: 20px;
}
.tpl-thumb::before, .tpl-thumb::after{
  content:'';
  position: absolute;
  border-radius: 4px;
  background: rgba(15,15,15,0.08);
}
.tpl-corporate::before{ top: 20px; left: 20px; right: 20px; height: 10px; background: rgba(15,15,15,0.55); }
.tpl-corporate::after{ top: 44px; left: 20px; right: 40%; height: 60px; box-shadow: 0 18px 0 -8px rgba(15,15,15,0.08), 0 36px 0 -8px rgba(15,15,15,0.08); }
.tpl-minimal::before{ top: 30px; left: 50%; transform: translateX(-50%); width: 40%; height: 8px; }
.tpl-minimal::after{ top: 60px; left: 50%; transform: translateX(-50%); width: 70%; height: 90px; }
.tpl-creative::before{ top: 20px; left: 20px; width: 50px; height: 50px; border-radius: 50%; background: rgba(76,175,80,0.4); }
.tpl-creative::after{ top: 20px; left: 84px; right: 20px; height: 10px; }
.tpl-executive::before{ top: 24px; left: 24px; right: 24px; height: 2px; background: rgba(15,15,15,0.6); }
.tpl-executive::after{ top: 40px; left: 24px; right: 24px; height: 70px; }
.tpl-modern::before{ top: 0; left: 0; bottom: 0; width: 34%; background: rgba(15,15,15,0.9); }
.tpl-modern::after{ top: 24px; left: 44%; right: 20px; height: 60px; }
.tpl-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}
.tpl-meta span{ font-weight: 600; font-size: 14.5px; }
.tpl-preview{ font-size: 13px; font-weight: 500; color: var(--text-soft); position: relative; }
.tpl-preview::after{ content:''; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px; background: var(--text); transition: width 0.2s ease; }
.tpl-preview:hover{ color: var(--text); }
.tpl-preview:hover::after{ width: 100%; }

/* ==========================================================================
   Process
   ========================================================================== */
.process-row{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-line{
  position: absolute;
  top: 15px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step{ position: relative; z-index: 1; padding-right: 10px; }
.step-num{
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--card);
  background: var(--accent);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.process-step h3{ font-size: 17px; margin-bottom: 8px; }
.process-step p{ font-size: 14.5px; line-height: 1.55; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
}
.testi-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.testi-stars{ color: var(--warning); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p{ font-size: 15px; line-height: 1.6; color: var(--text); margin-bottom: 24px; }
.testi-person{ display: flex; align-items: center; gap: 12px; }
.avatar{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.testi-person div{ display: flex; flex-direction: column; }
.testi-person strong{ font-size: 14px; font-weight: 600; }
.testi-person span{ font-size: 12.5px; color: var(--text-soft); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
}
.price-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.price-card.featured{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.plan-badge{
  position: absolute;
  top: -13px; left: 30px;
  background: var(--warning);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}
.plan-name{ font-size: 14px; font-weight: 600; color: var(--text-soft); }
.featured .plan-name{ color: rgba(255,255,255,0.65); }
.plan-price{
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  margin: 12px 0 8px;
}
.plan-price span{ font-size: 15px; font-weight: 500; color: var(--text-soft); }
.featured .plan-price span{ color: rgba(255,255,255,0.6); }
.plan-desc{ font-size: 14.5px; margin-bottom: 26px; }
.featured .plan-desc{ color: rgba(255,255,255,0.65); }
.plan-list{ display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex-grow: 1; }
.plan-list li{
  font-size: 14.5px;
  padding-left: 22px;
  position: relative;
}
.plan-list li::before{
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 12px; height: 12px;
  background: var(--success);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.featured .plan-list li{ color: rgba(255,255,255,0.85); }
.price-card.featured .btn-primary{ background: #fff; color: var(--accent); }
.price-card.featured .btn-primary:hover{ background: #eee; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list{ display: flex; flex-direction: column; gap: 12px; }
.faq-item{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.faq-plus{
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.faq-plus::before, .faq-plus::after{
  content: '';
  position: absolute;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-plus::before{ top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-plus::after{ left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-plus::after{ transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.2,.8,.2,1);
}
.faq-a p{ padding: 0 24px 22px; font-size: 14.5px; line-height: 1.6; }
.faq-item.open .faq-a{ max-height: 200px; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta{ padding-bottom: var(--section-space); }
.cta-box{
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
}
.cta-box h2{ font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.cta-box p{ color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 32px; }
.cta-box .btn-primary{ background: #fff; color: var(--accent); }
.cta-box .btn-primary:hover{ background: #eee; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{ padding: 80px 0 0; border-top: 1px solid var(--border); }
.footer-grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-brand p{ font-size: 14px; margin-top: 14px; line-height: 1.6; max-width: 240px; }
.footer-col h4, .footer-social h4{ font-size: 13px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.footer-col{ display: flex; flex-direction: column; gap: 11px; }
.footer-col a{ font-size: 14px; color: var(--text-soft); transition: color 0.2s ease; }
.footer-col a:hover{ color: var(--text); }
.social-icons{ display: flex; gap: 10px; }
.social-icons a{
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-icons a:hover{ color: var(--text); border-color: var(--text); transform: translateY(-2px); }
.footer-bottom{
  border-top: 1px solid var(--border);
  padding: 22px 32px;
  font-size: 13px;
  color: var(--text-soft);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal]{
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}
[data-reveal="up"]{ transform: translateY(28px); }
[data-reveal="left"]{ transform: translateX(-28px); }
[data-reveal="right"]{ transform: translateX(28px); }
[data-reveal].in-view{ opacity: 1; transform: translate(0,0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px){
  .feature-grid{ grid-template-columns: repeat(2, 1fr); }
  .template-grid{ grid-template-columns: repeat(3, 1fr); }
  .testi-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .builder-frame{ grid-template-columns: 1fr; }
  .builder-sidebar, .builder-assistant{ display: none; }
}

@media (max-width: 900px){
  .nav-links{ display: none; }
  .nav-actions .link-btn{ display: none; }
  .nav-burger{ display: flex; }
  .mobile-menu{ display: flex; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ min-height: 460px; order: -1; }
  .hero-copy{ max-width: 100%; }
  .process-row{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .process-line{ display: none; }
  section, .hero{ }
  :root{ --section-space: 96px; }
}

@media (max-width: 640px){
  body{ font-size: 16px; }
  .container{ padding: 0 20px; }
  .feature-grid{ grid-template-columns: 1fr; }
  .template-grid{ grid-template-columns: 1fr 1fr; }
  .process-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
  .dash-stage{ transform: scale(0.82); transform-origin: top center; }
  .hero-title{ font-size: 40px; }
  .cta-box{ padding: 56px 24px; }
}