/* ══════════════════════════════════════
   NetRing Tech Services — Shared Styles
   ══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --bg:       #080c14;
  --surface:  #0d1420;
  --card:     #111926;
  --border:   #1e2d42;
  --accent:   #00c6ff;
  --accent2:  #0072ff;
  --warn:     #ff6b2b;
  --text:     #e2eaf4;
  --muted:    #5a7494;
  --green:    #00e5a0;
  --purple:   #9b6dff;
  --red:      #ff4d6d;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,198,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,198,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: rgba(8,12,20,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  gap: 16px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: .12em;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--text); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 6px 14px;
  border-radius: 2px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,.04); }
.nav-links a.active { color: var(--accent); }

a.cta-nav {
  color: var(--accent);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  border: 1px solid var(--accent);
  padding: 7px 20px;
  border-radius: 2px;
  transition: background .2s, color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
a.cta-nav:hover { background: var(--accent); color: var(--bg); }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; font-weight: 600; font-size: .88rem;
  letter-spacing: .07em; padding: 14px 32px;
  border: none; border-radius: 2px; cursor: pointer;
  text-decoration: none; text-transform: uppercase;
  transition: opacity .2s, transform .15s; display: inline-block;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--text);
  font-size: .88rem; font-weight: 500; letter-spacing: .07em;
  padding: 14px 32px; border: 1px solid var(--border);
  border-radius: 2px; cursor: pointer; text-decoration: none;
  text-transform: uppercase; transition: border-color .2s, color .2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-warn {
  background: linear-gradient(135deg, #c0392b, var(--warn));
  color: #fff; font-weight: 600; font-size: .88rem;
  letter-spacing: .07em; padding: 14px 32px;
  border: none; border-radius: 2px; cursor: pointer;
  text-decoration: none; text-transform: uppercase;
  transition: opacity .2s, transform .15s; display: inline-block;
}
.btn-warn:hover { opacity: .88; transform: translateY(-1px); }

/* ── LAYOUT ── */
.page-section {
  position: relative; padding: 80px 40px;
  max-width: 1240px; margin: 0 auto;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; color: var(--accent);
  letter-spacing: .25em; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .04em; line-height: 1.05; margin-bottom: 14px;
}
.section-sub {
  color: var(--muted); max-width: 560px;
  font-size: .95rem; margin-bottom: 48px;
}

.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── TAGS / PILLS ── */
.tier-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem; letter-spacing: .12em;
  padding: 3px 10px; border-radius: 2px;
  text-transform: uppercase; margin-right: 6px; margin-bottom: 6px;
}
.tag-blue   { background: rgba(0,198,255,.12); color: var(--accent);  border: 1px solid rgba(0,198,255,.25); }
.tag-green  { background: rgba(0,229,160,.1);  color: var(--green);   border: 1px solid rgba(0,229,160,.2); }
.tag-warn   { background: rgba(255,107,43,.1); color: var(--warn);    border: 1px solid rgba(255,107,43,.2); }
.tag-purple { background: rgba(155,109,255,.1);color: var(--purple);  border: 1px solid rgba(155,109,255,.2); }
.tag-red    { background: rgba(255,77,109,.1); color: var(--red);     border: 1px solid rgba(255,77,109,.2); }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--border);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: border-color .25s, transform .2s;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  opacity: 0; transition: opacity .25s;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,198,255,.08); border: 1px solid rgba(0,198,255,.2);
  border-radius: 4px; margin-bottom: 20px; font-size: 1.4rem;
}
.card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  letter-spacing: .06em; margin-bottom: 10px; color: var(--text);
}
.card p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }

/* ── STATS STRIP ── */
.stats-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.stat { flex: 1 1 140px; padding: 20px 24px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-val {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.1rem;
  color: var(--accent); line-height: 1; letter-spacing: .04em;
}
.stat-lbl { font-size: .72rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  padding: 56px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,114,255,.12), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem;
  letter-spacing: .04em; line-height: 1.05; margin-bottom: 8px;
}
.cta-banner p { color: var(--muted); font-size: .9rem; max-width: 460px; }
.cta-contact { font-family: 'JetBrains Mono', monospace; font-size: .8rem; color: var(--accent); letter-spacing: .1em; margin-top: 14px; }
.cta-contact a { color: var(--accent); text-decoration: none; }
.cta-contact a:hover { text-decoration: underline; }

/* ── FEATURE TABLE ── */
.feat-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.feat-table th {
  font-family: 'JetBrains Mono', monospace; font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
  padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: left;
}
.feat-table td { padding: 14px 16px; border-bottom: 1px solid rgba(30,45,66,.6); }
.feat-table tr:last-child td { border-bottom: none; }
.feat-table tr:hover td { background: rgba(0,198,255,.03); }
.feat-table td:first-child { color: var(--text); font-weight: 500; }
.feat-table td:not(:first-child) { color: var(--muted); font-size: .84rem; }
.check { color: var(--green); } .cross { color: var(--border); } .partial { color: var(--warn); }

/* ── PROCESS STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
.step { padding: 32px 24px; border: 1px solid var(--border); margin: -1px -1px 0 0; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--border); line-height: 1; margin-bottom: 12px; letter-spacing: .04em; }
.step h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: .06em; color: var(--text); margin-bottom: 8px; }
.step p { font-size: .84rem; color: var(--muted); line-height: 1.6; }

/* ── HERO EYEBROW ── */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: .72rem;
  color: var(--accent); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--accent); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: .78rem; color: var(--muted); letter-spacing: .04em;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fu  { animation: fadeUp .6s ease both; }
.fu1 { animation-delay: .1s; } .fu2 { animation-delay: .2s; }
.fu3 { animation-delay: .3s; } .fu4 { animation-delay: .4s; } .fu5 { animation-delay: .5s; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-section { padding: 60px 20px; }
  .cta-banner { padding: 36px 24px; }
  footer { flex-direction: column; text-align: center; }
}

/* ── CONTACT FORM ── */
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-family: 'JetBrains Mono', monospace; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: .9rem;
  border-radius: 2px; outline: none; transition: border-color .2s;
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--surface); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
