/* IT HELP DESK SRL — polished static website */
:root {
  --bg: #050b14;
  --bg-2: #07111f;
  --panel: rgba(16, 28, 47, 0.78);
  --panel-2: rgba(9, 18, 32, 0.94);
  --text: #edf6ff;
  --muted: #9fb0c4;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --green: #67e8f9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 16% 0%, rgba(59, 130, 246, 0.22), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(34, 211, 238, 0.14), transparent 28%),
    linear-gradient(180deg, #030813 0%, var(--bg-2) 48%, #04080f 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.76), transparent 78%);
  z-index: 0;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 84px 0; position: relative; z-index: 2; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.03)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 11, 20, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  box-shadow: 0 14px 36px rgba(59, 130, 246, .32);
}
.brand-text { font-size: 1.05rem; }
.nav-links { display: flex; gap: 22px; color: var(--muted); font-size: .95rem; }
.nav-links a:hover { color: var(--text); }

.btn, .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover, .nav-cta:hover { transform: translateY(-1px); }
.btn-primary, .nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 18px 42px rgba(59,130,246,.25);
}
.btn-secondary { border: 1px solid var(--line-strong); background: rgba(255,255,255,.04); }

.hero { padding-top: 72px; }
.hero-grid, .process-grid, .contact-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 46px; align-items: center; }
.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  color: #d6e7fb;
  font-weight: 800;
  font-size: .82rem;
  margin-bottom: 18px;
}
h1, h2 { margin: 0; line-height: 1.04; letter-spacing: -0.05em; }
h1 { font-size: clamp(2.45rem, 5vw, 4.55rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
h3 { margin: 0 0 8px; }
p { color: var(--muted); }
.hero-text, .section-copy, .section-head p { font-size: 1.05rem; max-width: 740px; }
.hero-actions, .trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.trust-row { gap: 10px; margin-top: 22px; }
.trust-row span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #d9e8fa;
  font-size: .9rem;
}
.hero-panel { position: relative; min-height: 420px; display: grid; place-items: center; }
.terminal-card {
  width: min(100%, 450px);
  border-radius: 26px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.terminal-top { display: flex; gap: 8px; padding: 16px; border-bottom: 1px solid var(--line); }
.terminal-top span { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.25); }
.terminal-body { padding: 20px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color: #d8eaff; }
.terminal-body p { margin: 0 0 12px; color: #d8eaff; }
.ok { color: var(--green) !important; }
.floating-card {
  position: absolute;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: #e8f5ff;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.floating-card.one { top: 54px; right: 8px; }
.floating-card.two { bottom: 42px; left: 0; }

.section-head { max-width: 780px; margin-bottom: 36px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 22px; min-height: 235px; }
.icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(59,130,246,.16);
  color: #bfdbfe;
  font-weight: 800;
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.steps { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 62px 1fr; gap: 18px; padding: 20px; }
.step span {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(34,211,238,.12);
  border: 1px solid var(--line);
  font-weight: 800;
}
.about-card { padding: 28px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: start; }
.contact-card, .policy-card { padding: 28px; }
.contact-card p { margin: 10px 0; }
.full { width: 100%; margin-top: 16px; }
.noscript-note { font-size: .9rem; color: #bfdbfe; border: 1px solid var(--line); border-radius: 12px; padding: 12px; background: rgba(59,130,246,.10); }
.site-footer { position: relative; z-index: 2; padding: 30px 0 20px; border-top: 1px solid var(--line); background: rgba(3,7,14,.78); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 24px; padding-bottom: 18px; }
.footer-grid div { display: grid; gap: 9px; }
.footer-grid h4 { margin: 0 0 8px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 16px; color: var(--muted); font-size: .92rem; }
.policy-card { max-width: 920px; }
.policy-card h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.policy-card h2 { margin-top: 28px; font-size: 1.25rem; }

@media (max-width: 980px) {
  .hero-grid, .process-grid, .contact-grid, .about-card, .footer-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .nav { flex-wrap: wrap; padding: 12px 0; }
  .nav-links { width: 100%; order: 3; overflow-x: auto; white-space: nowrap; }
  .service-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .floating-card { position: static; margin-top: 12px; }
  .hero-panel { display: block; min-height: auto; }
}

/* Contact standalone page */
.contact-page-hero { padding-top: 72px; }
.contact-page-hero h1 { font-size: clamp(2.35rem, 4.6vw, 4.1rem); }
