@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg:        #0a0f0d;
  --bg-card:   #111a16;
  --bg-card2:  #0d1510;
  --accent:    #00e676;
  --accent2:   #00b0ff;
  --text:      #e8f5e9;
  --text-muted:#78909c;
  --border:    rgba(0,230,118,.15);
  --border2:   rgba(0,176,255,.15);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; }

header {
  background: rgba(10,15,13,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex; align-items: center; gap: 16px;
  height: 60px; position: sticky; top: 0; z-index: 100;
}
header a { color: var(--accent); text-decoration: none; font-size: 0.82rem; font-weight: 500; transition: opacity .2s; }
header a:hover { opacity: .7; }
header h1 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.badge { font-size: 0.62rem; font-weight: 600; padding: 2px 10px; border-radius: 20px; letter-spacing: .5px; text-transform: uppercase; }
.badge-green { background: rgba(0,230,118,.1); color: var(--accent); border: 1px solid var(--border); }
.badge-blue  { background: rgba(0,176,255,.1);  color: var(--accent2); border: 1px solid var(--border2); }
.badge-amber { background: rgba(255,183,77,.1);  color: #ffb74d; border: 1px solid rgba(255,183,77,.2); }
.badge-purple{ background: rgba(206,147,216,.1); color: #ce93d8; border: 1px solid rgba(206,147,216,.2); }

main { max-width: 900px; margin: 0 auto; padding: 40px 24px 80px; }

.hero-service {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.hero-service .icon { font-size: 3rem; margin-bottom: 16px; }
.hero-service h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 12px;
}
.hero-service h2 span {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-service p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; max-width: 680px; }
.hero-service .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

.section-block { margin-bottom: 40px; }
.section-block h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.section-block h3::before {
  content: ''; display: inline-block; width: 3px; height: 14px;
  background: linear-gradient(180deg, var(--accent), var(--accent2)); border-radius: 2px;
}

.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; margin-bottom: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: rgba(0,230,118,.3); box-shadow: 0 4px 20px rgba(0,230,118,.08); }
.card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; }
.card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }

.step {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 20px;
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 10px;
}
.step-num {
  min-width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0f0d; font-weight: 700; font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
}
.step-content h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.step-content p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

.highlight-box {
  background: rgba(0,230,118,.05); border: 1px solid var(--border);
  border-left: 3px solid var(--accent); border-radius: 8px;
  padding: 16px 20px; margin-bottom: 12px;
}
.highlight-box.blue {
  background: rgba(0,176,255,.05); border-color: var(--border2); border-left-color: var(--accent2);
}
.highlight-box p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
.highlight-box strong { color: var(--text); }

.tech-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 500;
  padding: 3px 10px; border-radius: 4px; margin: 3px;
  background: var(--bg-card2); border: 1px solid var(--border);
  color: var(--text-muted); font-family: 'Courier New', monospace;
}

footer {
  border-top: 1px solid var(--border); padding: 24px;
  text-align: center; font-size: 0.75rem; color: var(--text-muted);
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
