/* ============================================
   NET1C NETWORK — Modern Website
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-elevated: #f8f8fa;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f5f7;
  --border: #e5e5ea;
  --border-light: #d1d1d6;
  --text: #1a1a1f;
  --text-muted: #6b6b76;
  --text-dim: #9b9ba5;
  --accent: #c8102e;
  --accent-light: #d4243f;
  --accent-glow: rgba(200, 16, 46, 0.08);
  --accent-glow-strong: rgba(200, 16, 46, 0.15);
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea { font: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: transparent;
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-icon {
  height: 32px;
  width: auto;
  transition: var(--transition);
}
.nav__logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav__logo-accent { color: var(--accent); }
.nav__logo:hover .nav__logo-icon { opacity: 0.8; }

/* Footer logo */
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__brand-logo .footer__logo-icon {
  height: 30px;
  width: 30px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer__brand-logo .footer__logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
}
.nav__links a:hover {
  color: var(--text);
  background: rgba(0,0,0,0.04);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Language switch */
.lang-switch {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: var(--transition);
  color: var(--text-muted);
}
.lang-switch:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
  opacity: 0.06;
}
.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: #4f46e5;
  bottom: -100px;
  left: -100px;
  opacity: 0.04;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero__title {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__title--accent {
  background: linear-gradient(135deg, var(--accent) 0%, #e8213e 50%, #b80d28 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(200, 16, 46, 0.25);
}
.btn--primary:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.35);
  transform: translateY(-2px);
}
.btn--ghost {
  border: 1px solid var(--border-light);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--text-dim);
  background: rgba(0,0,0,0.03);
}
.btn--full { width: 100%; }

/* Hero stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero__stat {
  padding: 24px 16px;
  background: var(--bg-card);
  text-align: center;
}
.hero__stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.hero__stat-suffix {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-light);
}
.hero__stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  font-weight: 500;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 120px 0;
  position: relative;
}
.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  border-top: 1px solid var(--border);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 12px;
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-light);
}
.service-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-card__tags li {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
}
a.service-card { display: block; }
.service-card__link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.service-card:hover .service-card__link { opacity: 0.75; }

/* ============================================
   ABOUT
   ============================================ */
.about {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about__feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 10px;
}
.about__feature-icon svg { width: 20px; height: 20px; color: var(--accent-light); }
.about__feature strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.about__feature span {
  font-size: 13px;
  color: var(--text-dim);
}

/* Code card — kept dark for readability */
.about__card {
  background: #1e1e24;
  border: 1px solid #2a2a32;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.about__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid #2a2a32;
}
.about__card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.about__card-dot--red { background: #ff5f57; }
.about__card-dot--yellow { background: #febc2e; }
.about__card-dot--green { background: #28c840; }
.about__card-file {
  margin-left: 12px;
  font-size: 12px;
  font-family: var(--mono);
  color: #6b6b78;
}
.about__card-body {
  padding: 24px;
}
.about__card-body code {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 2;
  color: #b0b0bb;
}
.code-comment { color: #6b6b78; }
.code-key { color: #7dd3fc; }
.code-str { color: #86efac; }
.code-num { color: #fbbf24; }
.code-green { color: #22c55e; }
.code-blink {
  color: #22c55e;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ============================================
   INFRASTRUCTURE
   ============================================ */
.infra {
  border-top: 1px solid var(--border);
}
.infra__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.infra__map-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.infra__svg { width: 100%; height: auto; }
.infra__europe {
  fill: rgba(200, 16, 46, 0.04);
  stroke: var(--border);
  stroke-width: 1.5;
}
.infra__line {
  stroke: var(--accent);
  stroke-width: 1.5;
  opacity: 0.25;
}
.infra__line--animated {
  stroke-dasharray: 8 4;
  animation: dash-flow 20s linear infinite;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -240; }
}
.infra__dot {
  fill: var(--accent);
}
.infra__dot--pulse {
  filter: drop-shadow(0 0 8px var(--accent));
  animation: infra-pulse 2s ease-in-out infinite;
}
@keyframes infra-pulse {
  0%, 100% { r: 10; }
  50% { r: 12; }
}
.infra__dot-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  opacity: 0.2;
}
.infra__label {
  fill: #1a1a1f;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
}
.infra__label--lg {
  font-size: 17px;
  font-weight: 800;
}
.infra__sublabel {
  fill: #6b6b76;
  font-size: 10.5px;
  font-family: var(--font);
}

.infra__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.infra__item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.infra__item:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}
.infra__item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 10px;
}
.infra__item-icon svg { width: 22px; height: 22px; color: var(--accent-light); }
.infra__item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.infra__item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact__text {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
a.contact__detail:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}
.contact__detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 10px;
}
.contact__detail-icon svg { width: 20px; height: 20px; color: var(--accent-light); }
.contact__detail strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact__detail span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Form */
.contact__form {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.form__group {
  margin-bottom: 20px;
}
.form__group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form__group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer__col a,
.footer__legal-item {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  transition-delay: var(--delay, 0s);
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .infra__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    background: var(--white);
    border-left: 1px solid var(--border);
    box-shadow: -4px 0 24px rgba(0,0,0,0.08);
    transition: var(--transition);
    gap: 4px;
  }
  .nav__links.active { right: 0; }
  .nav__links a { width: 100%; padding: 12px 16px; font-size: 16px; }

  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__cta { flex-direction: column; align-items: stretch; }

  .section { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }

  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .contact__form { padding: 24px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stat { padding: 16px 12px; }
  .hero__stat-num { font-size: 24px; }
  .footer__links { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE PAGES
   ============================================ */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.page-hero__back {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
  transition: var(--transition);
}
.page-hero__back:hover { opacity: 0.7; }
.page-hero__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 16px;
}
.page-hero__icon svg { width: 32px; height: 32px; color: var(--accent); }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Detail grid */
.service-detail { padding: 80px 0; }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.detail-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  transition: var(--transition);
}
.detail-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.detail-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-glow);
  border-radius: 6px;
}
.detail-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.detail-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.detail-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.detail-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* Split layout inside card */
.detail-card__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.detail-card__split h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

/* Process steps */
.detail-card__process {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.detail-card__process h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.detail-card__steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-card__steps li {
  counter-increment: step;
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.detail-card__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  border-radius: 50%;
}

/* Tech tags */
.detail-card__tech {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.detail-card__tech h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.detail-card__tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-card__tech-tags span {
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--mono);
}

/* CTA block */
.detail-cta {
  text-align: center;
  padding: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.detail-cta h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.detail-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Service page responsive */
@media (max-width: 768px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card__split { grid-template-columns: 1fr; }
  .detail-card { padding: 24px; }
  .detail-cta { padding: 32px 24px; }
  .page-hero { padding: 100px 0 48px; }
}
