/* remotesalesforce.asia – shared styles
   Stil: hell & clean  |  Version 0.1 – 2026-06-27 – Bodo Kopplin */

:root {
  --brand:        #0d9488;   /* teal 600 */
  --brand-dark:   #0f766e;   /* teal 700 */
  --brand-light:  #99f6e4;   /* teal 200 */
  --accent:       #f59e0b;   /* amber 500 – Preis-/Highlight */
  --ink:          #0f172a;   /* slate 900 */
  --text:         #334155;   /* slate 700 */
  --muted:        #64748b;   /* slate 500 */
  --line:         #e2e8f0;   /* slate 200 */
  --bg:           #ffffff;
  --bg-soft:      #f1f5f9;   /* slate 100 */
  --bg-mute:      #f8fafc;   /* slate 50  */
  --radius:       14px;
  --shadow:       0 10px 30px rgba(15, 23, 42, .08);
  --shadow-sm:    0 2px 8px rgba(15, 23, 42, .06);
  --maxw:         1120px;
  --font:         system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.25rem); letter-spacing: -.01em; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .12em;
  font-size: .78rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 12px;
}
.lead { font-size: 1.15rem; color: var(--text); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #3b2705; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #fbbf24; }
.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-dark); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { background: #fff; color: var(--brand-dark); border-color: var(--line); }
.btn--outline:hover { border-color: var(--brand); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-size: 1.15rem; letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.brand .dot { color: var(--brand); }
.brand .tld { color: var(--muted); font-weight: 600; }
.brand svg { flex: 0 0 auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text); font-weight: 600; font-size: .98rem; }
.nav-links a:hover { color: var(--brand-dark); text-decoration: none; }
.nav-cta { padding: 9px 18px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- Banner / Hero ---------- */
.banner {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, rgba(15,118,110,.92), rgba(15,23,42,.78)),
              var(--banner-img, #0f766e) center/cover no-repeat;
}
.banner__inner { padding: 96px 0 104px; max-width: 760px; }
.banner h1 { color: #fff; }
.banner .lead { color: rgba(255,255,255,.92); }
.banner__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.banner__badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  padding: 6px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600;
}
.banner__badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(52,211,153,.6)} 70%{box-shadow:0 0 0 10px rgba(52,211,153,0)} 100%{box-shadow:0 0 0 0 rgba(52,211,153,0)} }

/* ---------- Jobpost ---------- */
.jobpost__img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.jobpost__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 36px; margin-top: -48px; position: relative;
}
.jobpost__card h2 { margin-top: 0; }
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 24px 0; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--brand-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ---------- Services / Pricing ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-light); color: var(--brand-dark); margin-bottom: 16px; }
.card h3 { margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .96rem; }
.price { font-size: 2rem; font-weight: 800; color: var(--ink); margin: 8px 0 2px; }
.price span { font-size: .95rem; font-weight: 600; color: var(--muted); }
.card .btn { margin-top: auto; }

/* ---------- About ---------- */
.about-hero { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }
.about-hero img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.facts { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 8px; }
.facts li { display: flex; gap: 10px; font-size: .95rem; }
.facts b { color: var(--ink); min-width: 96px; }
.timeline { border-left: 2px solid var(--line); margin: 0; padding: 0 0 0 28px; list-style: none; }
.timeline li { position: relative; padding-bottom: 28px; }
.timeline li::before { content: ""; position: absolute; left: -36px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--brand); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--brand-light); }
.timeline .role { font-weight: 700; color: var(--ink); }
.timeline .meta { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tag { background: var(--bg-soft); color: var(--text); font-size: .82rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--line); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field input, .field textarea, .field select {
  font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink); transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(13,148,136,.15);
}
.form-note { font-size: .85rem; color: var(--muted); }
.notice {
  background: #fffbeb; border: 1px solid #fde68a; color: #92400e;
  border-radius: 10px; padding: 14px 16px; font-size: .92rem; margin-bottom: 20px;
}
.form-status { margin-top: 14px; font-weight: 600; }

/* ---------- Generic content (legal pages) ---------- */
.prose { max-width: 75ch; }
.prose h2 { margin-top: 1.8em; }
.prose ul { padding-left: 1.2em; }
.placeholder-tag {
  display: inline-block; background: var(--bg-soft); border: 1px dashed #cbd5e1;
  color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  padding: 3px 10px; border-radius: 6px; text-transform: uppercase;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(120deg, var(--brand), var(--brand-dark)); color: #fff;
  border-radius: var(--radius); padding: 48px; text-align: center; box-shadow: var(--shadow);
}
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,.9); max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cbd5e1; padding: 56px 0 28px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.site-footer h4 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 20px; font-size: .85rem; color: #94a3b8; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 68px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 4px 24px; }
  .nav-links .nav-cta { margin: 8px 24px; text-align: center; }
  .nav-toggle { display: block; }
  .cols, .cards, .about-hero, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-hero img { max-width: 240px; }
  .jobpost__card { padding: 24px; margin-top: -24px; }
  .cta-strip { padding: 32px 20px; }
  .section { padding: 52px 0; }
}
