/* ANULUM Services — Shared Styles */
/* Used by all /services/*.html pages */

*{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg:#000000;
  --surface:rgba(255,255,255,0.04);
  --surface-hover:rgba(255,255,255,0.08);
  --border:rgba(255,255,255,0.08);
  --text:#d4d4d8;
  --text-dim:#71717a;
  --text-faint:#52525b;
  --red:#ef4444;
  --green:#22c55e;
  --blue:#38bdf8;
  --purple:#a78bfa;
  --orange:#f97316;
  --mono:'JetBrains Mono','SF Mono',Consolas,monospace;
}
html{font-size:16px;scroll-behavior:smooth}
body{
  font-family:'Space Grotesk',system-ui,sans-serif;
  background:var(--bg);color:var(--text);
  min-height:100vh;display:flex;flex-direction:column;align-items:center;overflow-x:hidden;
}

/* Skip link */
.skip-link{
  position:absolute;top:-40px;left:0;background:#000;color:var(--blue);
  padding:0.6rem 1rem;z-index:1000;text-decoration:none;
  border:1px solid var(--blue);font-size:0.85rem;
}
.skip-link:focus{top:0}

/* Topbar */
.topbar{
  width:100%;max-width:1100px;padding:1.4rem 2rem 0;
  display:flex;justify-content:space-between;align-items:center;position:relative;z-index:2;
}
.home-link{
  font-size:0.7rem;letter-spacing:0.18em;text-transform:uppercase;
  color:var(--text-dim);text-decoration:none;border-bottom:1px dotted transparent;
  transition:color 0.25s,border-bottom-color 0.25s;
}
.home-link:hover{color:var(--text);border-bottom-color:var(--text-dim)}
.lang-selector{
  background:var(--surface);border:1px solid var(--border);color:var(--text);
  font-family:var(--mono);font-size:0.7rem;letter-spacing:0.05em;
  padding:0.4rem 0.8rem;border-radius:4px;cursor:pointer;text-transform:uppercase;
}
.lang-selector:focus-visible{outline:2px solid var(--green);outline-offset:2px}

/* Container */
.container{position:relative;z-index:1;width:100%;max-width:1100px;padding:0 2rem}

/* Service Hero */
.svc-hero{padding:3rem 0 1.5rem;text-align:center}
.svc-tag{
  display:inline-flex;align-items:center;gap:0.5rem;
  font-size:0.65rem;font-weight:500;letter-spacing:0.25em;text-transform:uppercase;
  color:var(--green);padding:0.4rem 1rem;
  border:1px solid rgba(34,197,94,0.25);border-radius:9999px;background:rgba(34,197,94,0.06);
}
.svc-tag::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--green);box-shadow:0 0 8px rgba(34,197,94,0.6)}
.svc-title{
  margin-top:1.4rem;font-size:clamp(2rem,5vw,3rem);font-weight:300;
  letter-spacing:-0.02em;line-height:1.15;color:var(--text);
}
.svc-subtitle{
  margin:1rem auto 0;max-width:680px;font-size:1rem;line-height:1.55;color:var(--text-dim);font-weight:300;
}
.svc-pills{margin-top:1.6rem;display:flex;flex-wrap:wrap;justify-content:center;gap:0.7rem}
.svc-pill{
  display:inline-flex;align-items:center;gap:0.45rem;
  font-size:0.68rem;font-weight:500;letter-spacing:0.06em;
  padding:0.4rem 0.9rem;border:1px solid var(--border);
  border-radius:9999px;background:var(--surface);color:var(--text-dim);
}
.svc-pill::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--green);opacity:0.7}

/* Section labels */
.section-label{
  font-size:0.7rem;font-weight:500;letter-spacing:0.3em;text-transform:uppercase;
  color:var(--text-dim);margin:3rem 0 1.2rem;padding-left:0.5rem;
  display:flex;align-items:center;gap:0.7rem;
}
.section-label::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--green);opacity:0.7}

/* Deliverables grid */
.deliverables{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:1px;background:var(--border);border:1px solid var(--border);border-radius:12px;overflow:hidden;
}
.deliverable{
  background:var(--bg);padding:1.6rem 1.8rem;display:flex;flex-direction:column;gap:0.5rem;
  transition:background 0.25s;
}
.deliverable:hover{background:var(--surface-hover)}
.deliverable-name{font-size:0.95rem;font-weight:500;color:var(--text)}
.deliverable-desc{font-size:0.82rem;color:var(--text-dim);line-height:1.55}

/* Pricing tiers */
.pricing{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:1px;background:var(--border);border:1px solid var(--border);border-radius:12px;overflow:hidden;
}
.tier{
  background:var(--bg);padding:2rem 1.8rem;display:flex;flex-direction:column;gap:0.8rem;
  position:relative;transition:background 0.25s;
}
.tier:hover{background:var(--surface-hover)}
.tier-featured{border-top:2px solid var(--green)}
.tier-name{font-size:0.65rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--text-faint);font-weight:500}
.tier-price{font-family:var(--mono);font-size:1.6rem;color:var(--text);font-weight:300;letter-spacing:-0.02em}
.tier-price .currency{font-size:0.9rem;color:var(--text-dim)}
.tier-price .period{font-size:0.7rem;color:var(--text-faint);font-weight:400}
.tier-desc{font-size:0.82rem;color:var(--text-dim);line-height:1.55}
.tier-features{list-style:none;display:flex;flex-direction:column;gap:0.5rem;margin-top:0.4rem}
.tier-features li{
  font-size:0.8rem;color:var(--text-dim);line-height:1.4;padding-left:1.2rem;position:relative;
}
.tier-features li::before{
  content:'';position:absolute;left:0;top:0.45em;width:5px;height:5px;
  border-radius:50%;background:var(--green);opacity:0.6;
}
.tier-cta{
  display:inline-flex;align-items:center;justify-content:center;
  margin-top:auto;padding:0.65rem 1.2rem;
  font-size:0.8rem;font-weight:500;letter-spacing:0.04em;
  border:1px solid var(--border);border-radius:6px;
  background:transparent;color:var(--text);text-decoration:none;
  transition:background 0.25s,border-color 0.25s,color 0.25s;cursor:pointer;
}
.tier-cta:hover{background:var(--surface-hover);border-color:rgba(255,255,255,0.2);color:#fff}
.tier-cta-primary{background:var(--green);color:#0a0a0f;border-color:var(--green)}
.tier-cta-primary:hover{background:#4ade80;border-color:#4ade80}

/* Process steps */
.process{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1.2rem}
.step{
  padding:1.4rem 1.6rem;background:var(--surface);border:1px solid var(--border);
  border-radius:10px;display:flex;flex-direction:column;gap:0.5rem;
}
.step-num{
  font-family:var(--mono);font-size:0.65rem;color:var(--green);
  letter-spacing:0.12em;text-transform:uppercase;font-weight:500;
}
.step-name{font-size:0.95rem;font-weight:500;color:var(--text)}
.step-desc{font-size:0.8rem;color:var(--text-dim);line-height:1.5}

/* Why ANULUM */
.trust-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:1px;background:var(--border);border:1px solid var(--border);border-radius:12px;overflow:hidden;
}
.trust-item{background:var(--bg);padding:1.4rem 1.6rem;display:flex;flex-direction:column;gap:0.4rem}
.trust-icon{font-size:1.2rem;margin-bottom:0.2rem}
.trust-title{font-size:0.9rem;font-weight:500;color:var(--text)}
.trust-desc{font-size:0.78rem;color:var(--text-dim);line-height:1.5}

/* CTA block */
.cta-block{
  margin-top:3rem;padding:2.2rem 2rem;background:var(--surface);
  border:1px solid var(--border);border-left:3px solid var(--green);
  border-radius:10px;text-align:center;
}
.cta-title{font-size:1.1rem;font-weight:400;color:var(--text);margin-bottom:0.5rem}
.cta-desc{font-size:0.88rem;color:var(--text-dim);line-height:1.5;margin-bottom:1.2rem;max-width:560px;margin-left:auto;margin-right:auto}
.cta-btn{
  display:inline-flex;align-items:center;gap:0.5rem;padding:0.7rem 1.4rem;
  background:var(--green);color:#0a0a0f;font-size:0.85rem;font-weight:500;
  letter-spacing:0.04em;border:none;border-radius:6px;text-decoration:none;
  cursor:pointer;transition:background 0.25s,transform 0.15s;
}
.cta-btn:hover{background:#4ade80;transform:translateY(-1px)}
.cta-btn:focus-visible{outline:2px solid var(--green);outline-offset:2px}

/* FAQ */
.faq{display:flex;flex-direction:column;gap:1px;background:var(--border);border:1px solid var(--border);border-radius:12px;overflow:hidden}
.faq-item{background:var(--bg);padding:1.4rem 1.8rem}
.faq-q{font-size:0.92rem;font-weight:500;color:var(--text);margin-bottom:0.4rem}
.faq-a{font-size:0.82rem;color:var(--text-dim);line-height:1.55}

/* Problem statement */
.problem{
  padding:1.8rem 2rem;background:var(--surface);border:1px solid var(--border);
  border-radius:12px;font-size:0.95rem;color:var(--text-dim);line-height:1.65;
  max-width:800px;
}

/* Footer */
footer{
  margin-top:4rem;padding:2rem 0 3rem;text-align:center;
  font-size:0.75rem;color:var(--text-dim);letter-spacing:0.05em;line-height:1.8;
}
footer a{color:var(--text-dim);text-decoration:none;border-bottom:1px dotted transparent;transition:color 0.25s,border-bottom-color 0.25s}
footer a:hover{color:var(--text);border-bottom-color:var(--text-dim)}
.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:1.4rem;margin-bottom:0.6rem}
.footer-links a{font-size:0.78rem}
.footer-social{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem;margin-bottom:0.8rem;font-family:var(--mono)}
.footer-social a{font-size:0.66rem;letter-spacing:0.06em;color:var(--text-faint);text-transform:uppercase}
.footer-social a:hover{color:var(--text-dim);border-bottom-color:var(--text-faint)}
.footer-meta{font-size:0.7rem;color:var(--text-faint)}
.footer-updated{font-family:var(--mono);font-size:0.62rem;color:var(--text-faint);margin-top:0.6rem;letter-spacing:0.04em}

/* Services overview cards */
.svc-cards{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:1px;background:var(--border);border:1px solid var(--border);border-radius:12px;overflow:hidden;
}
.svc-card{
  background:var(--bg);padding:2rem 2rem;display:flex;flex-direction:column;gap:0.7rem;
  text-decoration:none;color:inherit;transition:background 0.25s,box-shadow 0.25s;
}
.svc-card:hover{background:var(--surface-hover);box-shadow:inset 3px 0 0 var(--green)}
.svc-card:focus-visible{outline:2px solid var(--green);outline-offset:-2px}
.svc-card-name{font-size:1.05rem;font-weight:500;color:var(--text)}
.svc-card-desc{font-size:0.82rem;color:var(--text-dim);line-height:1.5}
.svc-card-price{font-family:var(--mono);font-size:0.75rem;color:var(--green);letter-spacing:0.04em;margin-top:auto}
.svc-card-arrow{font-size:0.85rem;color:var(--text-faint);margin-left:auto;transition:transform 0.2s}
.svc-card:hover .svc-card-arrow{transform:translateX(3px);color:var(--green)}

/* Responsive */
@media(max-width:640px){
  .topbar{padding:1rem 1.4rem 0}
  .container{padding:0 1.4rem}
  .svc-hero{padding:2rem 0 1rem}
  .deliverables,.pricing,.trust-grid,.faq,.svc-cards{grid-template-columns:1fr}
  .process{grid-template-columns:1fr 1fr}
  .tier{padding:1.6rem 1.4rem}
  .footer-links{gap:1rem}
}
@media(max-width:480px){
  .process{grid-template-columns:1fr}
}

/* Motion + Print */
@media(prefers-reduced-motion:reduce){
  *{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important;scroll-behavior:auto !important}
  #bg-particles{display:none}
  .cta-btn:hover,.tier-cta:hover{transform:none}
}
@media print{
  body{background:#fff;color:#000;font-size:11pt}
  #bg-particles,#gc-counter,.footer-social,.skip-link,.lang-selector{display:none}
  .container,.topbar{max-width:none}
  .svc-title{color:#000}
  .deliverables,.pricing,.trust-grid,.faq,.svc-cards,.deliverable,.tier,.trust-item,.faq-item,.svc-card,.step,.problem,.cta-block{
    background:#fff;border-color:#ccc;page-break-inside:avoid;color:#000;
  }
  .tier-price{color:#000}
  .tier-cta,.cta-btn{border:1pt solid #999;background:#eee;color:#000}
  footer{color:#444}
}
