/* === IntervuePro Global Styles === */
:root{
  --bg:#ffffff;
  --text:#111827; /* gray-900 */
  --muted:#6b7280; /* gray-500 */
  --border:#e5e7eb; /* gray-200 */
  --card:#ffffff;

  /* Theme */
  --violet-400:#a78bfa;
  --violet-500:#8b5cf6;
  --violet-600:#7c3aed;
  --violet-700:#6d28d9;

  --green-500:#10b981;
  --amber-500:#f59e0b;
  --rose-500:#f43f5e;

  --shadow: 0 10px 25px rgba(2,6,23,0.08);
  --radius: 16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(1120px,92%);margin-inline:auto}

/* NAV */
header.nav{position:sticky;top:0;z-index:40;backdrop-filter:saturate(180%) blur(10px);background:rgba(255,255,255,.7);border-bottom:1px solid rgba(226,232,240,.6)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}

/* Brand: no gap between "Intervue" and "Pro" */
.brand{
  display:inline-flex;
  align-items:baseline;
  gap:0;                 /* remove spacing between spans */
  white-space:nowrap;    /* keep IntervuePro on one line */
  font-weight:900;
  letter-spacing:-.01em;
  font-family:Poppins, Inter, system-ui;
}
.brand .pro{
  background:linear-gradient(90deg,var(--violet-600),var(--violet-400));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-left:-0.02em;   /* subtle optical join */
}

.brand-dot{
  width:20px;
  height:20px;
  background: url("../images/intervuepro_icon_64.png") center/contain no-repeat;
  border-radius:0;              /* no circle mask unless you want it */
  display:inline-block;
}

.nav-links{display:flex;gap:1.25rem;color:#4b5563}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.8rem 1.05rem;border-radius:10px;border:1px solid transparent;font-weight:700}
.btn.primary{background:linear-gradient(180deg,var(--violet-400),var(--violet-600));color:#fff;box-shadow:0 10px 24px rgba(124,58,237,.25)}
.btn.secondary{background:#fff;color:#374151;border-color:var(--border)}

/* HERO */
.hero-wrap{position:relative;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:
  radial-gradient(1200px 600px at 10% -10%, rgba(139,92,246,.35), transparent 60%),
  radial-gradient(1200px 600px at 90% 10%, rgba(236,72,153,.25), transparent 60%),
  linear-gradient(180deg, rgba(139,92,246,.12), rgba(139,92,246,0))}
.hero{position:relative;padding:84px 0 56px;text-align:center}
.badge{display:inline-block;font-size:.82rem;font-weight:700;color:var(--violet-700);background:rgba(139,92,246,.12);padding:.4rem .7rem;border:1px solid rgba(139,92,246,.25);border-radius:999px}
.h-title{font-family:Poppins,Inter;font-weight:900;font-size:clamp(34px,4.3vw,64px);line-height:1.1;letter-spacing:-.02em;margin:16px 0 10px}
.h-copy{color:#6b7280;font-size:1.06rem;line-height:1.75;max-width:820px;margin:0 auto 24px}
.h-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-bottom:22px}

.mini-feats{display:flex;justify-content:center;gap:28px;flex-wrap:wrap;margin-top:12px;color:#4b5563}
.mini{display:flex;align-items:center;gap:.6rem}
.mini .icon{width:36px;height:36px;border-radius:10px;display:grid;place-items:center;color:var(--violet-600);background:rgba(139,92,246,.1);border:1px solid rgba(139,92,246,.2)}

/* GENERIC SECTION */
.section{padding:72px 0}
.intro{text-align:center;max-width:760px;margin:0 auto 32px}
.intro h2{font-size:clamp(26px,3vw,36px);line-height:1.2;margin:0 0 10px}
.muted{color:#6b7280}

/* HOW IT WORKS */
.grid-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:18px;box-shadow:var(--shadow)}
.step{position:relative}
.step .num{position:absolute;top:14px;right:14px;width:28px;height:28px;border-radius:999px;background:rgba(139,92,246,.12);color:var(--violet-700);display:grid;place-items:center;font-weight:800;border:1px solid rgba(139,92,246,.25)}
.icon-box{width:40px;height:40px;border-radius:12px;display:grid;place-items:center;margin-bottom:8px;color:var(--violet-600);background:rgba(139,92,246,.1);border:1px solid rgba(139,92,246,.2)}
.card h4{margin:8px 0 6px}
.card p{color:#6b7280;line-height:1.6}

/* WHY CHOOSE */
.reasons{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.reason{display:flex;gap:12px;align-items:flex-start;border-radius:16px;padding:18px;border:1px solid var(--border);box-shadow:var(--shadow)}
.reason:nth-child(1){background:linear-gradient(0deg, rgba(139,92,246,.05), rgba(139,92,246,.05))}
.reason:nth-child(2){background:linear-gradient(0deg, rgba(245,158,11,.06), rgba(245,158,11,.06))}
.reason:nth-child(3){background:linear-gradient(0deg, rgba(16,185,129,.06), rgba(16,185,129,.06))}
.reason:nth-child(4){background:linear-gradient(0deg, rgba(244,63,94,.06), rgba(244,63,94,.06))}
.reason .dot{width:14px;height:14px;border-radius:999px;margin-top:6px}
.reason:nth-child(1) .dot{background:var(--violet-500)}
.reason:nth-child(2) .dot{background:var(--amber-500)}
.reason:nth-child(3) .dot{background:var(--green-500)}
.reason:nth-child(4) .dot{background:var(--rose-500)}

/* CTA */
.cta{padding:72px 0}
.cta-inner{background:radial-gradient(800px 300px at 50% -10%, rgba(139,92,246,.18), transparent 60%), #fff;border:1px solid var(--border);border-radius:18px;padding:28px;box-shadow:0 30px 70px rgba(17,24,39,.08)}
.cta .tick{width:42px;height:42px;border-radius:999px;display:grid;place-items:center;margin:0 auto 10px;color:var(--violet-600);background:rgba(139,92,246,.1);border:1px solid rgba(139,92,246,.25)}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;text-align:center;margin-top:8px}
.stat .big{font-weight:900;font-size:clamp(28px,3vw,36px);color:var(--violet-700)}
.stat .lbl{color:#6b7280}

/* FOOTER */
footer{padding:28px 0 60px;color:#6b7280}

/* UTIL PAGES */
.page-header{padding:56px 0 28px;text-align:center;background:linear-gradient(180deg, rgba(139,92,246,.06), rgba(139,92,246,0))}
.page-header h1{font-family:Poppins,Inter;font-weight:900;letter-spacing:-.02em;margin:0 0 8px}
.page{padding:36px 0}
.page .content{width:min(860px,92%);margin:auto;color:#334155;line-height:1.8}
.page .content h2{color:#0f172a}

/* === Mini Feature Boxes (replaces old .mini-feats row) === */
.feature-grid{
  display:grid;
  gap:12px;
  grid-template-columns: 1fr 1fr 1fr;
  max-width:900px;
  margin:18px auto 0;
}
.feature{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:var(--shadow);
  padding:14px;
  text-align:center;
}
.feature strong{display:block; margin-bottom:4px}
.feature .muted{display:block}

/* Smaller screens */
@media (max-width: 900px){
  .feature-grid{grid-template-columns:1fr}
}

/* Steps: remove icon spacing (we're dropping the icons) */
.card.step { padding-top:26px }          /* keep breathing room for the number bubble */
.card.step .icon-box{ display:none }     /* icons removed per request */
.card.step h4{ margin-top:2px }          /* nudge up since icon is gone */


/* === Contact (Request Demo) === */
.contact{
  display:grid;
  grid-template-columns: 1fr;
  gap:24px;
  justify-items:center;
}
form#demo-form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px;
  box-shadow:var(--shadow);
  max-width:680px;
  width:100%;
  margin:0 auto;
}

.field{display:flex;flex-direction:column;gap:8px;margin-bottom:12px}
.field label{font-size:.9rem;color:#334155;font-weight:600}
.input{border:1px solid #dbe1ea;border-radius:10px;padding:12px 12px;outline:none}
.input:focus{border-color:#a5b4fc;box-shadow:0 0 0 3px rgba(124,58,237,.15)}
textarea.input{min-height:110px;resize:vertical}

.contact-aside{
  display:grid;gap:12px;
  max-width:680px;width:100%;
  margin:12px auto 0;
}
.info{display:flex;align-items:center;gap:.8rem;background:#fff;border:1px solid var(--border);padding:14px;border-radius:12px;box-shadow:var(--shadow)}
.icon-box{width:38px;height:38px;border-radius:10px;display:grid;place-items:center;color:var(--violet-600);background:rgba(139,92,246,.1);border:1px solid rgba(139,92,246,.2)}


/* Responsive */
@media (max-width:1024px){
  .nav-links{display:none}
  .grid-steps{grid-template-columns:1fr 1fr}
  .reasons{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
}
@media (max-width:640px){
  .grid-steps{grid-template-columns:1fr}
}
