/* TaashaTech Website Wireframe — Shared Styles */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1a1a1a;
  --ink-2: #4a4a4a;
  --ink-3: #7a7a7a;
  --line: #d0d0d0;
  --line-2: #e8e8e8;
  --surface: #f5f5f5;
  --surface-2: #eeeeee;
  --white: #ffffff;
  --blue: #1a56db;
  --blue-bg: #e8f0fe;
  --purple: #5b21b6;
  --purple-bg: #ede9fe;
  --green: #065f46;
  --green-bg: #d1fae5;
  --amber: #92400e;
  --amber-bg: #fef3c7;
  --red: #991b1b;
  --red-bg: #fee2e2;
  --new-border: #7c3aed;
  --update-border: #d97706;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'SF Mono', 'Fira Code', monospace;
}

body {
  font-family: var(--font);
  font-size: 13px;
  color: var(--ink);
  background: #f0f0f0;
  line-height: 1.5;
}

/* ── PAGE CHROME ── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.page-meta {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.page-meta .pm-title { font-size: 15px; font-weight: 600; }
.page-meta .pm-url { font-family: var(--mono); font-size: 11px; color: #94a3b8; margin-top: 2px; }
.page-meta .pm-status { margin-left: auto; font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 4px; }
.status-existing { background: #d1fae5; color: #065f46; }
.status-new { background: #ede9fe; color: #5b21b6; }
.status-update { background: #fef3c7; color: #92400e; }

/* ── BROWSER FRAME ── */
.browser {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.browser-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.b-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.b-red { background: #e24b4a; }
.b-amber { background: #ba7517; }
.b-green { background: #639922; }
.url-pill {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
}

/* ── SITE NAV ── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.nav-links li a {
  font-size: 12px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
}
.nav-links li a:hover { color: var(--blue); }
.nav-links li.active a { color: var(--ink); font-weight: 600; }
.nav-cta {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 5px;
  text-decoration: none;
}

/* ── SECTION ANATOMY ── */
.wf-section {
  padding: 32px 24px;
  border-bottom: 1px solid var(--line-2);
  position: relative;
}
.wf-section:last-child { border-bottom: none; }
.wf-section.bg-surface { background: var(--surface); }
.wf-section.bg-surface-2 { background: var(--surface-2); }

/* annotation badges */
.ann {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.ann-new { background: var(--purple-bg); color: var(--purple); border: 1px dashed var(--new-border); }
.ann-update { background: var(--amber-bg); color: var(--amber); }
.ann-keep { background: var(--green-bg); color: var(--green); }
.ann-remove { background: var(--red-bg); color: var(--red); }
.ann-fix { background: #fef3c7; color: #78350f; border: 1px solid #fbbf24; }
.ann-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.section-note {
  font-size: 10px;
  color: var(--purple);
  background: var(--purple-bg);
  border-left: 2px solid var(--purple);
  padding: 4px 8px;
  margin-top: 8px;
  border-radius: 0 3px 3px 0;
}
.section-note.update { color: var(--amber); background: var(--amber-bg); border-color: var(--amber); }

/* ── TYPOGRAPHY ── */
.wf-h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.wf-h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.wf-h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.wf-p {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.6;
}
.wf-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.breadcrumb {
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.breadcrumb span { color: var(--ink-2); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 9px 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 8px;
  margin-top: 6px;
}
.btn-outline {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid var(--line);
  color: var(--ink-2);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  margin-right: 8px;
  margin-top: 6px;
}

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; align-items: center; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}
.card-accent {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  border-top: 3px solid var(--blue);
}
.card-new {
  background: var(--white);
  border: 1px dashed var(--new-border);
  border-radius: 8px;
  padding: 14px;
  background: #faf9ff;
}
.card-img {
  width: 100%;
  height: 60px;
  background: var(--surface);
  border-radius: 5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 11px;
  border: 1px dashed var(--line);
}

/* ── STAT GRID ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.stat-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.stat-num { font-size: 24px; font-weight: 700; color: var(--ink); }
.stat-label { font-size: 10px; color: var(--ink-3); margin-top: 3px; }

/* ── PROCESS STEPS ── */
.steps { display: flex; flex-direction: column; gap: 8px; }
.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  border-left: 3px solid var(--blue);
}
.step-num {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink-2);
  border: 1px solid var(--line);
  margin-right: 4px;
  margin-bottom: 4px;
}
.tag-blue { background: var(--blue-bg); color: var(--blue); border-color: #b5d4f4; }
.tag-purple { background: var(--purple-bg); color: var(--purple); border-color: #c4b5fd; }
.tag-green { background: var(--green-bg); color: var(--green); border-color: #6ee7b7; }

/* ── FAQ ── */
.faq-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 12px; font-weight: 500; color: var(--ink); flex: 1; }
.faq-toggle { font-size: 16px; color: var(--ink-3); flex-shrink: 0; }

/* ── FORM ── */
.form-group { margin-bottom: 10px; }
.form-label { font-size: 11px; font-weight: 600; color: var(--ink-2); margin-bottom: 4px; display: block; }
.form-field {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 12px;
  color: var(--ink-3);
  background: var(--white);
  font-family: var(--font);
}
.form-field.textarea { height: 72px; resize: none; }
.form-hint { font-size: 10px; color: var(--ink-3); margin-top: 3px; }

/* ── TIMELINE ── */
.timeline { display: flex; gap: 0; }
.timeline-item {
  flex: 1;
  padding: 0 16px 0 0;
  border-right: 2px solid var(--line);
  padding-right: 16px;
  margin-right: 16px;
}
.timeline-item:last-child { border-right: none; }
.timeline-date { font-size: 11px; font-weight: 600; color: var(--blue); margin-bottom: 4px; }

/* ── COMPARISON TABLE ── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.compare-col { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 14px; }
.compare-col.highlight { border: 2px solid var(--blue); border-top: 3px solid var(--blue); }
.compare-best {
  font-size: 10px;
  font-weight: 600;
  background: var(--blue-bg);
  color: var(--blue);
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 8px;
  display: inline-block;
}

/* ── BLOG CARD ── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.blog-img {
  height: 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 11px;
}
.blog-body { padding: 14px; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.blog-cat {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: #94a3b8;
  padding: 28px 24px 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.footer-brand { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-desc { font-size: 11px; line-height: 1.6; }
.footer-heading { font-size: 11px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.footer-link { font-size: 11px; margin-bottom: 5px; display: block; }
.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

/* ── INTERNAL LINK ANNOTATION ── */
.ilink {
  display: inline-block;
  font-size: 10px;
  color: var(--purple);
  background: var(--purple-bg);
  padding: 1px 7px;
  border-radius: 3px;
  font-family: var(--mono);
  margin-top: 5px;
  border: 1px solid #c4b5fd;
}

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  background: var(--blue-bg);
  color: var(--blue);
  margin-bottom: 12px;
}

/* ── REMOVE OVERLAY ── */
.remove-section {
  position: relative;
  border: 2px dashed var(--red);
  border-radius: 6px;
  padding: 12px;
  background: #fff8f8;
}

/* ── PLACEHOLDER IMG ── */
.ph-img {
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 11px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--line-2);
  padding: 32px 24px;
  text-align: center;
}
.cta-band .wf-h2 { margin-bottom: 8px; }
.cta-band .wf-p { max-width: 440px; margin: 0 auto 14px; }

/* ── CONTACT ── */
.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 32px;
  height: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.map-ph {
  width: 100%;
  height: 110px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 6px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 11px;
}

/* ── NAV INDEX ── */
.site-index {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 24px;
}
.site-index-title { font-size: 11px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px; }
.index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 16px; }
.index-link {
  font-size: 12px;
  color: var(--blue);
  text-decoration: none;
  padding: 3px 0;
  display: block;
  font-weight: 500;
}
.index-link.new { color: var(--purple); }
.index-link::before { content: "/ "; color: var(--ink-3); font-family: var(--mono); font-size: 10px; }

/* ── SERVICE PAGE HERO ── */
.service-hero {
  padding: 28px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line-2);
  border-top: 4px solid var(--blue);
}

/* ── SCHEMA NOTE ── */
.schema-note {
  background: #f0f7ff;
  border: 1px solid #b5d4f4;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--blue);
  font-family: var(--mono);
  margin-top: 12px;
}
