/* styles.css — Sitely Studios Pure Static CSS */
:root {
  --bg-main: #ffffff;
  --bg-subtle: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;

  --pastel-rose: #fff1f2;
  --pastel-rose-border: #fecdd3;
  --pastel-rose-text: #be123c;
  
  --pastel-violet: #f5f3ff;
  --pastel-violet-border: #ddd6fe;
  --pastel-violet-text: #6d28d9;

  --pastel-mint: #ecfdf5;
  --pastel-mint-border: #a7f3d0;
  --pastel-mint-text: #047857;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.05);
  --shadow-fixed-bar: 0 -8px 24px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  padding-bottom: 120px; /* CRITICAL: Room for fixed bottom bar */
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER & REALISTIC LIGHTING LOGO */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand-container { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.brand-emblem {
  position: relative; width: 42px; height: 42px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 60%, #f1f5f9 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), inset 0 1px 1px #fff;
}
.emblem-highlight {
  position: absolute; top: 3px; left: 4px; width: 14px; height: 5px;
  background: rgba(255, 255, 255, 0.95); border-radius: 6px; filter: blur(0.5px);
}
.brand-title { font-size: 17px; font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 6px; }
.brand-badge { font-size: 10px; font-weight: 600; padding: 1px 6px; background: var(--pastel-rose); color: var(--pastel-rose-text); border: 1px solid var(--pastel-rose-border); border-radius: 4px; }
.brand-tagline { font-size: 11px; color: var(--text-muted); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--text-muted); }
.btn-header-cta {
  background: linear-gradient(135deg, #fff1f2 0%, #f5f3ff 50%, #f0f9ff 100%);
  color: var(--text-main); border: 1px solid var(--border-light);
  padding: 8px 18px; border-radius: var(--radius-md); font-size: 13px; font-weight: 600; text-decoration: none;
}

/* HERO SECTION */
.hero-section { padding-top: 130px; padding-bottom: 90px; text-align: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500; color: var(--text-muted); margin-bottom: 24px;
}
.pill-dot { width: 7px; height: 7px; background-color: #f43f5e; border-radius: 50%; }
.hero-title { font-size: 52px; font-weight: 800; line-height: 1.15; color: var(--text-main); max-width: 820px; margin: 0 auto 20px; }
.hero-title-accent { background: linear-gradient(90deg, #e11d48 0%, #7c3aed 50%, #4338ca 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 19px; color: var(--text-muted); max-width: 700px; margin: 0 auto 32px; }
.hero-cta-group { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 40px; }
.btn-primary { background: #0f172a; color: #fff; padding: 14px 28px; border-radius: var(--radius-md); font-size: 15px; font-weight: 600; text-decoration: none; }
.btn-secondary { background: #fff; color: var(--text-main); border: 1px solid var(--border-light); padding: 14px 24px; border-radius: var(--radius-md); font-size: 15px; text-decoration: none; }

/* SERVICES */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-subtle); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag { display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 600; text-transform: uppercase; background: var(--pastel-rose); color: var(--pastel-rose-text); border: 1px solid var(--pastel-rose-border); margin-bottom: 12px; }
.section-title { font-size: 36px; font-weight: 800; color: var(--text-main); margin-bottom: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.service-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 36px 30px; display: flex; flex-direction: column; justify-content: space-between; }
.service-card.highlight { border-color: var(--pastel-violet-border); box-shadow: 0 8px 30px rgba(139, 92, 246, 0.08); }
.service-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px; margin-bottom: 16px; }
.badge-mint { background: var(--pastel-mint); color: var(--pastel-mint-text); border: 1px solid var(--pastel-mint-border); }
.badge-violet { background: var(--pastel-violet); color: var(--pastel-violet-text); border: 1px solid var(--pastel-violet-border); }
.badge-rose { background: var(--pastel-rose); color: var(--pastel-rose-text); border: 1px solid var(--pastel-rose-border); }
.service-features { list-style: none; border-top: 1px solid var(--border-subtle); padding-top: 18px; margin-bottom: 24px; }
.service-features li { font-size: 13px; margin-bottom: 10px; }
.feature-check { color: #10b981; font-weight: bold; }

/* PROCESS */
.process-card { background: var(--bg-subtle); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px 28px; }
.process-number { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; background: #fff; border: 1px solid var(--border-light); margin-bottom: 18px; }
.process-effort-box { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 12px; }
.effort-label { font-weight: 700; text-transform: uppercase; font-size: 10px; color: #059669; display: block; }

/* CONTACT (Only Name & Email) */
.contact-container { max-width: 580px; margin: 0 auto; background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 44px 38px; }
.form-group { margin-bottom: 20px; text-align: left; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-main); margin-bottom: 6px; }
.form-input { width: 100%; padding: 14px 16px; font-size: 14px; background: #f8fafc; border: 1px solid var(--border-light); border-radius: var(--radius-md); outline: none; }
.form-input:focus { background: #fff; border-color: #a78bfa; box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2); }
.form-btn-submit { width: 100%; padding: 15px 24px; font-size: 15px; font-weight: 600; color: #fff; background: #0f172a; border: none; border-radius: var(--radius-md); cursor: pointer; }
.contact-success { display: none; text-align: center; padding: 24px; background: var(--pastel-mint); border: 1px solid var(--pastel-mint-border); border-radius: var(--radius-md); color: var(--pastel-mint-text); }

/* FIXED TESTIMONIALS BAR */
.fixed-testimonials-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  box-shadow: var(--shadow-fixed-bar);
  padding: 12px 0;
}
.testimonials-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.trust-badge { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.stars-rating { color: #f59e0b; font-size: 13px; }
.trust-label { font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.testimonial-active-slot { flex: 1; max-width: 780px; background: #f8fafc; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 10px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; overflow: hidden; }
.testimonial-quote { font-size: 13px; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.testimonial-author { font-size: 12px; font-weight: 600; color: var(--text-main); white-space: nowrap; flex-shrink: 0; }
.testimonial-company { font-size: 11px; color: var(--text-muted); }
.testimonial-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.control-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border-light); border-radius: 6px; cursor: pointer; }

/* DYNAMIC SCROLL HORIZON & MORPHING RADAR */
.scroll-morph-radar {
  position: fixed; bottom: 84px; right: 24px; z-index: 998;
  transition: transform 0.15s ease-out;
}
.radar-card {
  width: 300px; background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.radar-header { padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); background: #fafafa; }
.radar-brand-slot { display: flex; align-items: center; gap: 10px; }
.radar-canvas-box { position: relative; width: 34px; height: 34px; background: #fff; border: 1px solid var(--border-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.radar-canvas-box canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.radar-icon { position: relative; z-index: 2; font-size: 14px; color: #8b5cf6; }
.radar-meta-row { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }
.radar-dot { color: #cbd5e1; }
.radar-pct { font-weight: 600; color: #64748b; }
.radar-active-name { font-size: 13px; font-weight: 700; color: var(--text-main); }
.radar-body { padding: 12px 14px; }
.radar-cue-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px 12px; background: #f8fafc; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); cursor: pointer; text-align: left; transition: all 0.2s;
}
.radar-cue-btn:hover { background: #fff; border-color: #c4b5fd; box-shadow: var(--shadow-sm); }
.radar-cue-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.radar-cue-arrow { width: 26px; height: 26px; border-radius: 6px; background: var(--pastel-violet); color: var(--pastel-violet-text); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.radar-cue-dir { font-size: 10px; font-weight: 700; color: #7c3aed; }
.radar-cue-target { font-size: 12px; font-weight: 700; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.radar-cue-action { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.radar-progress-stream { margin-top: 10px; height: 4px; background: #f1f5f9; border-radius: 99px; overflow: hidden; }
.radar-progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, #f43f5e, #8b5cf6, #3b82f6); border-radius: 99px; transition: width 0.1s; }

.site-footer { padding: 40px 0 20px; border-top: 1px solid var(--border-subtle); font-size: 12px; color: var(--text-muted); text-align: center; }