/* Web Development — North Blue */
.web-svc-page {
  --wd-bg: #0b1424;
  --wd-panel: #111c2e;
  --wd-panel-2: #162338;
  --wd-line: rgba(96, 165, 250, 0.16);
  --wd-blue: #60a5fa;
  --wd-blue-dim: rgba(96, 165, 250, 0.12);
  --wd-deep: #2563eb;
  --wd-text: #e2e8f0;
  --wd-muted: #94a3b8;
  --wd-white: #f8fafc;
  --wd-display: 'Outfit', system-ui, sans-serif;
  --wd-body: 'IBM Plex Sans', system-ui, sans-serif;

  --background-color: #0b1424;
  --default-color: #e2e8f0;
  --heading-color: #f8fafc;
  --surface-color: #111c2e;
  --accent-color: #60a5fa;
  --nav-color: #e2e8f0;
  --nav-hover-color: #60a5fa;
  --nav-mobile-background-color: #111c2e;

  font-family: var(--wd-body);
  color: var(--wd-text);
  background:
    radial-gradient(ellipse 70% 45% at 85% 0%, rgba(37, 99, 235, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 30% at 0% 40%, rgba(96, 165, 250, 0.08), transparent 50%),
    linear-gradient(180deg, #08101c 0%, var(--wd-bg) 40%, #0d1524 100%) !important;
  overflow-x: hidden;
}

.web-svc-page h1,
.web-svc-page h2,
.web-svc-page h3 {
  font-family: var(--wd-display);
  color: var(--wd-white);
  letter-spacing: -0.025em;
  font-weight: 700;
}

.web-svc-page .header {
  background: rgba(11, 20, 36, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid var(--wd-line) !important;
}
.web-svc-page .header .logo img {
  max-height: 34px;
  filter: brightness(0) invert(1);
}
.web-svc-page .header .navmenu > ul > li > a {
  color: rgba(226, 232, 240, 0.88) !important;
}
.web-svc-page .header .navmenu > ul > li > a.active,
.web-svc-page .header .navmenu > ul > li > a:hover {
  color: var(--wd-blue) !important;
}
.web-svc-page .header .btn-getstarted {
  background: linear-gradient(135deg, var(--wd-blue), var(--wd-deep)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}
.web-svc-page .header .mobile-nav-toggle { display: none !important; }
.web-svc-page .main { padding-top: 0; }

.web-svc-page .mobile-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(11, 20, 36, 0.96);
  border-bottom: 1px solid var(--wd-line);
  backdrop-filter: blur(12px);
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 10px;
}
.web-svc-page .mobile-nav-container {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.web-svc-page .mobile-logo img {
  max-height: 32px; width: auto;
  filter: brightness(0) invert(1);
}
.web-svc-page .mobile-nav-actions { display: flex; align-items: center; gap: 8px; }
.web-svc-page .mobile-nav-cta {
  background: linear-gradient(135deg, var(--wd-blue), var(--wd-deep));
  color: #fff !important;
  padding: 8px 14px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; text-decoration: none;
}
.web-svc-page .mobile-menu-toggle {
  width: 38px; height: 38px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(96, 165, 250, 0.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; cursor: pointer;
}
.web-svc-page .mobile-menu-backdrop {
  position: fixed; inset: 0; z-index: 10040;
  background: rgba(8, 16, 28, 0.65);
  backdrop-filter: blur(3px);
  border: 0; cursor: pointer;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}
.web-svc-page.mobile-menu-open .mobile-menu-backdrop {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.web-svc-page .mobile-menu {
  position: fixed; top: 0; right: 0; width: min(300px, 86vw); height: 100%;
  background: var(--wd-panel); z-index: 10050;
  transform: translateX(105%); transition: transform 0.25s ease;
  padding: 1.25rem; border-left: 1px solid var(--wd-line);
}
.web-svc-page .mobile-menu.active { transform: translateX(0); }
.web-svc-page .mobile-menu-header {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem;
}
.web-svc-page .mobile-menu-header span {
  display: block; font-family: var(--wd-display); font-weight: 700; font-size: 1.1rem; color: var(--wd-white);
}
.web-svc-page .mobile-menu-header small { color: var(--wd-muted); }
.web-svc-page .mobile-menu-close {
  border: 0; background: var(--wd-panel-2); color: var(--wd-text);
  width: 36px; height: 36px; border-radius: 10px;
}
.web-svc-page .mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.web-svc-page .mobile-menu a {
  display: block; padding: 0.75rem 0; color: var(--wd-text);
  font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--wd-line);
}

@media (max-width: 1199px) {
  .web-svc-page #header { display: none !important; }
}

.wd-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.85rem 1.3rem; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  border: 0; cursor: pointer; transition: transform 0.15s;
  font-family: var(--wd-body);
}
.wd-btn:hover { transform: translateY(-1px); }
.wd-btn--blue {
  background: linear-gradient(135deg, var(--wd-blue), var(--wd-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}
.wd-btn--ghost {
  background: transparent; color: var(--wd-text);
  border: 1px solid var(--wd-line);
}

.wd-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  background: var(--wd-blue-dim); color: var(--wd-blue);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
}

.wd-section { padding: clamp(3rem, 6vw, 4.75rem) 0; }
.wd-section--panel {
  background: rgba(17, 28, 46, 0.65);
  border-block: 1px solid var(--wd-line);
}
.wd-head { margin-bottom: 1.75rem; max-width: 640px; }
.wd-head--center { text-align: center; margin-inline: auto; }
.wd-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  margin: 0.65rem 0;
}
.wd-head h2 em { font-style: normal; color: var(--wd-blue); }
.wd-head p { color: var(--wd-muted); margin: 0; line-height: 1.7; }

/* Hero — full-bleed like other service pages */
.wd-hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex; align-items: flex-end;
  padding: clamp(120px, 14vw, 150px) 0 3.5rem;
  overflow: hidden;
}
.wd-hero__media { position: absolute; inset: 0; }
.wd-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: brightness(0.38) saturate(1.05) contrast(1.05);
}
.wd-hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 16, 28, 0.96) 0%, rgba(8, 16, 28, 0.75) 48%, rgba(8, 16, 28, 0.35) 100%),
    linear-gradient(0deg, rgba(8, 16, 28, 0.95) 0%, transparent 50%);
}
.wd-hero__content { position: relative; z-index: 2; max-width: 620px; }
.wd-hero__brand {
  font-family: var(--wd-display);
  color: var(--wd-blue);
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
}
.wd-hero h1 {
  font-size: clamp(2.25rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}
.wd-hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--wd-blue), #bfdbfe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wd-hero__lead {
  color: var(--wd-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 480px;
}
.wd-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.wd-hero__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.wd-pill {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--wd-line);
  background: rgba(11, 20, 36, 0.65);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wd-blue);
}

.wd-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.wd-feature {
  background: var(--wd-panel);
  border: 1px solid var(--wd-line);
  border-radius: 18px;
  padding: 1.35rem;
  transition: transform 0.2s, border-color 0.2s;
}
.wd-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.4);
}
.wd-feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--wd-blue-dim);
  color: var(--wd-blue);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}
.wd-feature:nth-child(even) .wd-feature__icon {
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
}
.wd-feature h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  font-family: var(--wd-body);
  font-weight: 800;
}
.wd-feature p { margin: 0; color: var(--wd-muted); font-size: 0.9rem; line-height: 1.6; }

/* Studio */
.wd-studio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
}
.wd-studio__pick {
  background: var(--wd-panel);
  border: 1px solid var(--wd-line);
  border-radius: 20px;
  padding: 1.25rem;
}
.wd-studio__pick h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  font-family: var(--wd-body);
  font-weight: 800;
}
.wd-studio__pick > p {
  color: var(--wd-muted);
  font-size: 0.86rem;
  margin: 0 0 1rem;
  line-height: 1.55;
}
.wd-type {
  display: block; width: 100%;
  text-align: left;
  border: 1px solid var(--wd-line);
  background: transparent;
  color: var(--wd-text);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--wd-body);
}
.wd-type:hover,
.wd-type.active {
  background: var(--wd-blue-dim);
  border-color: rgba(96, 165, 250, 0.4);
}
.wd-type strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}
.wd-type span { font-size: 0.78rem; color: var(--wd-muted); }

.wd-score {
  background: var(--wd-panel);
  border: 1px solid var(--wd-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.wd-score__bar {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.9rem 1.1rem;
  background: var(--wd-panel-2);
  border-bottom: 1px solid var(--wd-line);
}
.wd-score__bar strong { font-size: 0.92rem; font-family: var(--wd-body); }
.wd-score__live {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #34d399;
}
.wd-score__live i {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  margin-right: 0.35rem;
  animation: wd-blink 1.2s ease infinite;
}
@keyframes wd-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.wd-studio__img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #08101c;
  overflow: hidden;
}
.wd-studio__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.wd-studio__img img.active { opacity: 1; }
.wd-score__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--wd-line);
}
.wd-ring {
  background: var(--wd-panel);
  padding: 1rem 0.75rem;
  text-align: center;
}
.wd-ring__val {
  font-family: var(--wd-display);
  font-size: 1.55rem;
  color: var(--wd-blue);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.wd-ring label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wd-muted);
}
.wd-score__body { padding: 1.1rem 1.15rem 1.25rem; }
.wd-score__note {
  color: var(--wd-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
.wd-studio__url {
  font-size: 0.75rem;
  color: var(--wd-muted);
  font-family: ui-monospace, monospace;
  margin-left: 0.5rem;
}

.wd-show {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}
.wd-show--rev { direction: rtl; }
.wd-show--rev > * { direction: ltr; }
.wd-show__img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--wd-line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  background: #08101c;
}
.wd-show__img img {
  width: 100%; display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover; object-position: center top;
}
.wd-list {
  list-style: none; padding: 0; margin: 1.15rem 0 0;
}
.wd-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  margin-bottom: 0.7rem; font-weight: 600; font-size: 0.92rem;
}
.wd-list i { color: var(--wd-blue); margin-top: 0.15rem; }

.wd-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.wd-process__step {
  background: var(--wd-panel);
  border: 1px solid var(--wd-line);
  border-radius: 16px;
  padding: 1.15rem 1rem;
}
.wd-process__num {
  font-family: var(--wd-display);
  font-size: 1.4rem;
  color: var(--wd-blue);
  margin-bottom: 0.45rem;
  line-height: 1;
}
.wd-process__step strong {
  display: block;
  font-family: var(--wd-body);
  font-size: 0.95rem;
  color: var(--wd-white);
  margin-bottom: 0.3rem;
}
.wd-process__step span { font-size: 0.82rem; color: var(--wd-muted); line-height: 1.5; }

.wd-use {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.wd-use__card {
  background: var(--wd-panel);
  border: 1px solid var(--wd-line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.wd-use__card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-3px);
}
.wd-use__card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.wd-use__card div { padding: 1rem 1.1rem 1.2rem; }
.wd-use__card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  font-family: var(--wd-body);
  font-weight: 800;
}
.wd-use__card p { margin: 0; color: var(--wd-muted); font-size: 0.86rem; line-height: 1.55; }

.wd-cta { padding: 3.5rem 0 4.5rem; }
.wd-cta__box {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.18), transparent 50%),
    var(--wd-panel);
  border: 1px solid var(--wd-line);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}
.wd-cta__box h2 { margin: 0 0 0.65rem; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.wd-cta__box p { color: var(--wd-muted); max-width: 520px; margin: 0 auto 1.35rem; }
.wd-cta__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }

.web-svc-page .footer {
  background: #08101c !important;
  border-top: 1px solid var(--wd-line);
  color: var(--wd-muted) !important;
}
.web-svc-page .footer a { color: var(--wd-blue) !important; }
.web-svc-page .footer .sitename,
.web-svc-page .footer h4,
.web-svc-page .footer .copyright p { color: var(--wd-white) !important; }
.web-svc-page .footer-newsletter { display: none; }

@media (max-width: 991px) {
  .wd-features,
  .wd-studio,
  .wd-show,
  .wd-use,
  .wd-process { grid-template-columns: 1fr; }
  .wd-features { grid-template-columns: 1fr 1fr; }
  .wd-process { grid-template-columns: 1fr 1fr; }
  .wd-score__grid { grid-template-columns: 1fr 1fr; }
  .wd-hero { min-height: auto; }
  .wd-show--rev { direction: ltr; }
}
@media (max-width: 575px) {
  .wd-features,
  .wd-use,
  .wd-process { grid-template-columns: 1fr; }
}
