/* =====================================================
   TechyHelp — site.css
   Shared styles for all subpages.
   index.html is self-contained and does not use this file.
   ===================================================== */

/* TOKENS */
:root {
  --ink:       #141b2d;
  --paper:     #fffbef;
  --paper-2:   #fef3d1;
  --coral:     #ff6a4d;
  --yellow:    #ffd02b;
  --blue:      #2e6bff;
  --mint:      #21c58f;
  --muted:     #5a6074;
  --border:    3px solid var(--ink);
  --shadow:    6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}
a     { color: inherit; }
img   { max-width: 100%; display: block; }
button { font-family: inherit; }
.display {
  font-family: 'Archivo Black', 'Nunito', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  padding: 16px 40px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}
.nav.scrolled { box-shadow: 0 6px 0 var(--coral); }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.nav-mark {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border: 3px solid var(--paper);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
  font-size: 22px;
  transform: rotate(-4deg);
  flex-shrink: 0;
  font-family: 'Archivo Black', sans-serif;
}
.nav-name { font-size: 22px; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-links a { color: var(--paper); text-decoration: none; padding: 6px 0; }
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }
.nav-phone {
  background: var(--yellow);
  color: var(--ink);
  padding: 12px 20px;
  border: 3px solid var(--paper);
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--coral);
  white-space: nowrap;
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: 0.02em;
}

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.section   { padding: 88px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.bg-paper  { background: var(--paper); }
.bg-paper2 { background: var(--paper-2); }
.bg-blue   { background: var(--blue); color: white; }
.bg-ink    { background: var(--ink); color: var(--paper); }

/* =====================================================
   SECTION HEADINGS
   ===================================================== */
.section-head    { margin-bottom: 48px; }
.section-kicker  {
  display: inline-block;
  background: var(--coral);
  color: white;
  padding: 8px 14px;
  border: var(--border);
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.section-h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  max-width: 800px;
}
.hl-yellow { background: var(--yellow); padding: 0 10px; display: inline-block; }
.hl-coral  { color: var(--coral); }

/* =====================================================
   PAGE HERO (subpage version)
   ===================================================== */
.page-hero {
  padding: 64px 40px 80px;
  background: var(--paper);
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero--urgent {
  background: var(--ink);
  color: var(--paper);
}
.page-hero--urgent .page-hero-lead { color: var(--paper); opacity: 0.9; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: center;
}
.page-hero-kicker {
  display: inline-block;
  background: var(--coral);
  color: white;
  padding: 8px 14px;
  border: var(--border);
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.page-hero--urgent .page-hero-kicker { border-color: var(--paper); }
.page-hero-h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 80px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.page-hero-lead {
  font-size: 21px;
  max-width: 540px;
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}
.page-hero-icon {
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
  font-size: 110px;
  border: var(--border);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  flex-shrink: 0;
}
.page-hero--urgent .page-hero-icon { border-color: var(--paper); box-shadow: 6px 6px 0 var(--coral); }

/* =====================================================
   TILE GRID
   ===================================================== */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tile {
  border: var(--border);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.tile.yellow { background: var(--yellow); }
.tile.white  { background: white; }
.tile-emoji  { font-size: 44px; margin-bottom: 14px; line-height: 1; }
.tile-title  {
  font-family: 'Archivo Black', sans-serif;
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.tile-body { font-size: 16px; color: var(--muted); font-weight: 600; line-height: 1.55; }

/* =====================================================
   OUTCOMES SECTION
   ===================================================== */
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 2px dashed rgba(20, 27, 45, 0.15);
}
.check-list .tick {
  font-family: 'Archivo Black', sans-serif;
  color: var(--mint);
  font-size: 20px;
  flex-shrink: 0;
}

/* =====================================================
   PRICE BOX
   ===================================================== */
.price-box {
  background: var(--yellow);
  border: var(--border);
  padding: 32px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}
.price-box-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.price-box-amount {
  font-family: 'Archivo Black', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--coral);
  margin-bottom: 10px;
}
.price-box-sub  { font-size: 14px; font-weight: 700; color: var(--muted); margin-bottom: 16px; }
.price-box-note { font-size: 15px; font-weight: 600; line-height: 1.5; }

/* =====================================================
   EMPHASIS BOX  (used on scam page)
   ===================================================== */
.emphasis-box {
  background: var(--coral);
  border: var(--border);
  padding: 32px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
  color: white;
}
.emphasis-box-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.emphasis-box-body { font-size: 17px; font-weight: 600; line-height: 1.6; margin-bottom: 18px; }
.emphasis-box-tag  { font-family: 'Archivo Black', sans-serif; font-size: 14px; color: var(--yellow); letter-spacing: 0.02em; }

/* =====================================================
   PAGE CTA  (coral bottom section)
   ===================================================== */
.page-cta {
  background: var(--coral);
  color: white;
  border-top: var(--border);
  border-bottom: var(--border);
  text-align: center;
  padding: 88px 40px;
}
.page-cta-kicker {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 8px 14px;
  border: var(--border);
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}
.page-cta-h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.page-cta-lead { font-size: 20px; font-weight: 600; max-width: 560px; margin: 0 auto 32px; line-height: 1.5; }
.btn-get-help {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  padding: 20px 40px;
  border: 3px solid var(--paper);
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 6px 6px 0 var(--paper);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-cta-hours { margin-top: 18px; font-size: 15px; font-weight: 700; opacity: 0.95; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--ink); color: var(--paper); padding: 56px 40px 28px; }
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.footer-brand { font-family: 'Archivo Black', sans-serif; font-size: 24px; color: var(--yellow); margin-bottom: 12px; }
.footer-tag   { font-size: 17px; line-height: 1.6; opacity: 0.85; max-width: 320px; }
.footer-h     { font-family: 'Archivo Black', sans-serif; color: var(--yellow); font-size: 13px; margin-bottom: 14px; letter-spacing: 0.05em; }
.footer a     { color: var(--paper); text-decoration: none; font-size: 17px; font-weight: 600; opacity: 0.85; display: block; margin-bottom: 10px; }
.footer a:hover { opacity: 1; }
.footer-area  { font-size: 15px; opacity: 0.7; margin-top: 8px; line-height: 1.5; }
.footer-base  {
  max-width: 1100px;
  margin: 18px auto 0;
  font-size: 13px;
  opacity: 0.5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  letter-spacing: 0.03em;
}

/* =====================================================
   CONTACT MODAL
   ===================================================== */
.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 27, 45, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.contact-modal-backdrop.open { display: flex; }
body.modal-open { overflow: hidden; }
.contact-modal {
  background: var(--paper);
  border: var(--border);
  box-shadow: 8px 8px 0 var(--coral);
  max-width: 460px;
  width: 100%;
  padding: 40px 36px 32px;
  position: relative;
  animation: contactIn 0.18s ease-out;
}
@keyframes contactIn {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.contact-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  background: var(--ink);
  color: var(--paper);
  border: var(--border);
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  padding: 0;
}
.contact-modal-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1;
}
.contact-modal-sub    { font-size: 17px; color: var(--muted); font-weight: 600; margin: 0 0 26px; }
.contact-options      { display: flex; flex-direction: column; gap: 14px; }
.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: var(--border);
  text-decoration: none;
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s, box-shadow 0.1s;
}
.contact-option:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--coral); }
.contact-option-icon  {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  font-size: 26px;
  flex-shrink: 0;
  border: var(--border);
}
.contact-option.call .contact-option-icon       { background: var(--yellow); }
.contact-option.whatsapp .contact-option-icon   { background: #25d366; color: white; }
.contact-option.form-option .contact-option-icon { background: var(--blue); color: white; }
.contact-option-title { font-family: 'Archivo Black', sans-serif; font-size: 19px; line-height: 1.2; letter-spacing: -0.01em; }
.contact-option-sub   { font-size: 15px; color: var(--muted); font-weight: 700; margin-top: 3px; }
.contact-modal-hours  { margin-top: 22px; text-align: center; font-size: 14px; font-weight: 700; color: var(--muted); letter-spacing: 0.02em; }

/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 780px) {
  body { font-size: 17px; }

  /* Nav */
  .nav          { padding: 14px 20px; flex-wrap: wrap; gap: 10px; }
  .nav-links    { display: none; }
  .nav-name     { font-size: 20px; }
  .nav-phone    { font-size: 13px; padding: 9px 14px; }

  /* Page hero */
  .page-hero    { padding: 44px 22px 56px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-h1 { font-size: 48px; }
  .page-hero-lead { font-size: 18px; }
  .page-hero-icon { width: 160px; height: 160px; font-size: 72px; margin: 0 auto; transform: rotate(2deg); }

  /* Sections */
  .section      { padding: 56px 22px; }
  .section-h2   { font-size: 36px; }

  /* Tiles */
  .tile-grid    { grid-template-columns: 1fr; gap: 16px; }

  /* Outcomes */
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-box    { transform: none; }
  .emphasis-box { transform: none; }

  /* Page CTA */
  .page-cta     { padding: 64px 22px; }
  .page-cta-h2  { font-size: 42px; }
  .btn-get-help { font-size: 17px; padding: 17px 28px; }

  /* Footer */
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer       { padding: 44px 22px 22px; }

  /* Modal */
  .contact-modal       { padding: 32px 22px 24px; }
  .contact-modal-title { font-size: 28px; }
  .contact-option      { padding: 14px 16px; gap: 14px; }
  .contact-option-icon { width: 46px; height: 46px; font-size: 22px; }
  .contact-option-title { font-size: 17px; }
}
