/* ============================================
   PROSPECT PROWL — Shared Stylesheet
   Clean & Professional
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #e84c1c;
  --blue-dark:  #0a0a0a;
  --blue-light: #fff4ee;
  --blue-mid:   #fbd5c0;
  --orange:     #e84c1c;
  --orange-dark:#c33a0e;
  --text:       #111111;
  --text-mid:   #333333;
  --text-light: #6b7280;
  --border:     #e5e7eb; 
  --bg:         #ffffff;
  --bg-light:   #f9f9f9;
  --bg-blue:    #fff4ee;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.18);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: .22s ease;
  --max-w:      1160px;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-mid); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-blue);
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container   { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 5rem 0; }
.section-alt { background: var(--bg-light); }
.section-blue{ background: var(--bg-blue); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header p { margin-top: .75rem; font-size: 1.1rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--bg-blue);
  transform: translateY(-1px);
}
.btn-lg { padding: .95rem 2.1rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }

/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -.02em;
}
.nav-logo .logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo .logo-icon img { width: 40px; height: 40px; object-fit: contain; }
.nav-logo span.accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.nav-cta { display: flex; align-items: center; gap: .75rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 60%, #2a2a2a 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::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.04'%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") repeat;
  opacity: .5;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero-badge::before { content: '🎯'; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: #fbbf24; }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.hero-trust .stars { color: #fbbf24; letter-spacing: 1px; }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack { position: relative; width: 360px; height: 340px; }
.metric-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.metric-card .mc-label { font-size: .75rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }
.metric-card .mc-value { font-size: 2rem; font-weight: 800; color: var(--blue-dark); line-height: 1.1; margin: .25rem 0; }
.metric-card .mc-change { font-size: .8rem; font-weight: 600; color: #10b981; }
.metric-card.card-1 { top: 0; left: 0; width: 200px; }
.metric-card.card-2 { top: 60px; right: 0; width: 220px; }
.metric-card.card-3 { bottom: 0; left: 30px; width: 240px; }
.metric-bar {
  height: 6px; background: var(--border); border-radius: 3px; margin-top: .75rem; overflow: hidden;
}
.metric-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--orange)); }

/* --- Stats Strip --- */
.stats-strip {
  background: #0a0a0a;
  color: #fff;
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-number span { color: var(--orange); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .35rem; font-weight: 500; }
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
  margin: auto 0;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.service-icon.blue   { background: var(--bg-blue); }
.service-icon.orange { background: #fff7ed; }
.service-icon.green  { background: #f0fdf4; }
.service-icon.purple { background: #faf5ff; }
.service-card h3 { margin-bottom: .5rem; }
.service-card p  { font-size: .925rem; line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: 1.1rem; font-size: .875rem; font-weight: 600;
  color: var(--blue); transition: gap var(--transition);
}
.service-link:hover { gap: .55rem; }

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-mid));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 3px var(--blue-mid);
}
.process-step h3 { margin-bottom: .5rem; }
.process-step p  { font-size: .9rem; }

/* --- Why Us --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; }
.why-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--bg-blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.why-item h4 { margin-bottom: .25rem; }
.why-item p  { font-size: .9rem; }

.why-visual {
  background: linear-gradient(135deg, #000000, #1f1f1f);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.why-visual-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 1.5rem; }
.why-metrics { display: flex; flex-direction: column; gap: 1.25rem; }
.wm-row { display: flex; justify-content: space-between; align-items: center; }
.wm-label { font-size: .875rem; color: rgba(255,255,255,.8); }
.wm-value { font-size: 1.5rem; font-weight: 800; }
.wm-bar { height: 8px; background: rgba(255,255,255,.2); border-radius: 4px; margin-top: .4rem; }
.wm-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #fbbf24, var(--orange)); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.tc-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.tc-quote { font-size: .95rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.5rem; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: .75rem; }
.tc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: #fff;
}
.tc-name  { font-weight: 700; font-size: .9rem; }
.tc-title { font-size: .8rem; color: var(--text-light); }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 540px; margin: 0 auto 2rem; }
.cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: background var(--transition);
}
.social-link:hover { background: var(--blue); }
.footer-col h4 { color: #fff; font-size: .9rem; margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.45);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, #000000, #1f1f1f);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; font-size: .825rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .5; }

/* --- Service Detail (services page) --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.sd-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.sd-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.sd-feature { display: flex; align-items: flex-start; gap: .75rem; font-size: .925rem; }
.sd-feature::before { content: '\u2713'; color: var(--blue); font-weight: 800; flex-shrink: 0; margin-top: .1rem; }
.sd-visual {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
  border: 1px solid var(--border);
  font-size: 5rem;
  text-align: center;
}

/* --- About page --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-mid); }
.value-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: .5rem; }
.value-card p { font-size: .9rem; }

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--bg-blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-item h4 { margin-bottom: .2rem; font-size: .9rem; }
.contact-item p  { font-size: .875rem; margin: 0; }

/* --- Form --- */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .925rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Nav --- */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    padding: 1.5rem 1.5rem 5rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
    box-shadow: var(--shadow);
  }
  .nav-mobile-open .nav-cta {
    display: flex;
    padding: 0.75rem 1.5rem;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    top: auto;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(0,0,0,.10);
    z-index: 101;
  }
  .navbar { position: sticky; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

